/* ═══════════════════════════════════════════════
   Crown Studio Design — Master Stylesheet v3
   Cream / Navy / Gold Premium Design System
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream:     #FAF8F4;
  --cream-warm:#F5F0E8;
  --white:     #FFFFFF;
  --navy:      #1B2F5E;
  --navy-mid:  #243A72;
  --navy-dark: #111E3E;
  --navy-08:   rgba(27,47,94,0.08);
  --navy-15:   rgba(27,47,94,0.15);
  --gold:      #C9A94D;
  --gold-light:#E2C97E;
  --gold-dark: #A8882A;
  --text-dark: #1B2F5E;
  --text-mid:  #3D3D5C;
  --text-soft: #7A7A9A;
  --font-disp: 'Cormorant Garamond', Georgia, serif;
  --font-head: 'Cinzel', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h:     96px;
  --radius:    2px;
  --t:         all 0.3s cubic-bezier(.4,0,.2,1);
  --ease:      cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 4px 16px rgba(27,47,94,0.08);
  --shadow-md: 0 12px 40px rgba(27,47,94,0.12);
  --shadow-lg: 0 24px 80px rgba(27,47,94,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-mid);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--t); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); font-size: 1rem; }

/* ── TYPOGRAPHY ── */
.display-xl { font-family: var(--font-disp); font-size: clamp(56px,7.5vw,108px); font-weight: 300; line-height: 1.02; }
.display-lg { font-family: var(--font-disp); font-size: clamp(44px,5.5vw,76px);  font-weight: 300; line-height: 1.06; }
.display-md { font-family: var(--font-disp); font-size: clamp(34px,3.8vw,56px);  font-weight: 300; line-height: 1.1;  }
.display-sm { font-family: var(--font-disp); font-size: clamp(28px,2.8vw,40px);  font-weight: 300; line-height: 1.15; }

em { font-style: italic; }

.label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.eyebrow { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; display: block; }

.lead { font-family: var(--font-disp); font-size: clamp(18px,1.5vw,22px); color: var(--text-dark); line-height: 1.65; font-weight: 300; }

p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin: 0 0 1.1rem; }

h1,h2,h3,h4 { font-family: var(--font-disp); font-weight: 300; color: var(--text-dark); }

/* ── LAYOUT ── */
.container  { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 100px 0; }
.section--sm{ padding: 64px 0; }
.bg-cream   { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-white   { background: var(--white); }
.bg-navy    { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

.max-560 { max-width: 560px; }
.max-580 { max-width: 580px; }
.max-600 { max-width: 600px; }
.max-540 { max-width: 540px; }
.center  { margin-left: auto; margin-right: auto; }

.section-hdr        { margin-bottom: 60px; }
.section-hdr.center { text-align: center; }
.section-hdr.center .lead { margin: 0 auto; }

/* ── GOLD RULE ── */
.gold-rule {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 11px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 98;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 30s linear infinite;
  padding: 0 40px;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: var(--t);
}
.nav--hero {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-08);
}
.nav--hero .nav-links a { color: var(--navy); }
.nav--hero .hamburger span { background: var(--navy); }
.nav--hero .btn-navy { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.nav.scrolled { background: var(--white); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}
.nav-logo { display:flex; align-items:center; }
.nav--hero .nav-logo { background: rgba(255,255,255,0.94); border: 1px solid var(--navy-08); padding: 8px 10px; border-radius: 6px; box-shadow: 0 10px 30px rgba(27,47,94,0.10); }
.nav-logo img { height: 72px; width: auto; transition: var(--t); }
.nav.scrolled .nav-logo img { height: 58px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--t);
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--gold); }

.nav-cta { display: flex; gap: 10px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--t); }
.nav.scrolled .hamburger span { background: var(--navy); }

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px 40px 40px;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
  z-index: 997;
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer a { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--navy-08); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--t);
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: var(--radius);
}
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,77,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy-15); }
.btn-ghost:hover { background: var(--navy-08); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.center-btn { text-align: center; margin-top: 48px; }

/* ── URGENCY PILL ── */
.urgency-pill {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201,169,77,0.12);
  border: 1px solid rgba(201,169,77,0.35);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,30,62,0.95) 0%, rgba(27,47,94,0.82) 60%, rgba(17,30,62,0.7) 100%),
    url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1800&q=80') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding: 140px 40px 100px; max-width: 1200px; margin: 0 auto; }
.hero h1 { color: #fff; max-width: 760px; }
.hero h1 em { color: var(--gold-light); }
.hero-sub { color: rgba(255,255,255,0.68); font-size: 18px; max-width: 520px; margin: 24px 0 36px; }
.hero-nudge { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255,255,255,0.5); font-size: 12px; font-family: var(--font-head); letter-spacing: 0.14em; }
.live-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; box-shadow: 0 0 0 2px rgba(76,175,80,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 2px rgba(76,175,80,.25)} 50%{box-shadow:0 0 0 6px rgba(76,175,80,.1)} }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; }
.hero-scroll span { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 8px; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(201,169,77,0.6), transparent); margin: 0 auto; animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.5)} }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1400&q=40') center/cover;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-top: 12px; }
.page-hero h1 em { color: var(--gold-light); }
.page-hero .lead { color: rgba(255,255,255,0.7); margin-top: 8px; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,30,62,0.94), rgba(27,47,94,0.78));
}

.breadcrumb {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-disp); font-size: clamp(36px,4vw,56px); font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ── SERVICE GRID ── */
.svc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.svc-card {
  background: var(--white);
  padding: 28px 22px;
  border: 1px solid var(--navy-08);
  transition: var(--t);
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.svc-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card-num { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.22em; color: var(--gold-dark); margin-bottom: 12px; }
.svc-card-icon { position: absolute; top: 20px; right: 20px; color: var(--navy-08); transition: var(--t); }
.svc-card:hover .svc-card-icon { color: var(--gold); }
.svc-card h3 { font-family: var(--font-disp); font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.svc-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.svc-card-link { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); display: flex; align-items: center; gap: 6px; }

/* ── SERVICE INDEX GRID ── */
.svc-index-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.svc-index-card {
  background: var(--white);
  padding: 28px 22px;
  border: 1px solid var(--navy-08);
  display: block;
  transition: var(--t);
}
.svc-index-card:hover { background: var(--navy); border-color: var(--navy); }
.svc-index-card:hover * { color: rgba(255,255,255,0.8) !important; }
.svc-index-num { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.2em; color: var(--gold-dark); margin-bottom: 6px; }
.svc-index-dba { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.svc-index-card h3 { font-family: var(--font-disp); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.svc-index-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* ── SPLIT GRID ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img-wrap { position: relative; }
.split-img { width: 100%; height: 560px; object-fit: cover; }
.years-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 24px;
  text-align: center;
  width: 120px;
}
.years-num { font-family: var(--font-disp); font-size: 40px; font-weight: 300; display: block; line-height: 1; }
.years-label { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-top: 4px; }
.split-content .lead { margin: 0 0 16px; }

/* ── DIFF LIST ── */
.diff-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.diff-item { display: flex; gap: 16px; align-items: flex-start; }
.diff-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.diff-item h4 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }
.diff-item p { font-size: 14px; }

/* ── WHY BOX ── */
.why-box {
  background: var(--cream);
  border: 1px solid var(--navy-08);
  padding: 32px;
}
.why-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.why-item p { font-size: 14px; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--cream); }
.feature-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.feature-item h4 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); line-height: 1.5; }

/* ── CITY TAGS ── */
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.city-tag { display: inline-block; padding: 8px 18px; background: var(--white); border: 1px solid var(--navy-08); font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); transition: var(--t); }
.city-tag:hover { background: var(--navy); color: #fff; }
.city-svc-tag { display: inline-block; padding: 7px 14px; background: var(--cream); border: 1px solid var(--navy-08); font-family: var(--font-head); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); transition: var(--t); }
.city-svc-tag:hover { background: var(--gold); color: var(--navy-dark); }

/* ── AREA + SVC TAGS ── */
.area-tag { display: inline-block; padding: 6px 14px; background: var(--white); border: 1px solid var(--navy-08); font-size: 13px; color: var(--text-soft); margin: 3px; }
.svc-tag { display: inline-block; padding: 7px 14px; background: var(--white); border: 1px solid var(--navy-08); font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); transition: var(--t); margin: 3px; }
.svc-tag:hover { background: var(--navy); color: #fff; }
.svc-tag-cloud { margin-top: 20px; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: var(--cream); padding: 32px 28px; border: 1px solid var(--navy-08); }
.review-stars { color: var(--gold); font-size: 16px; display: flex; gap: 2px; margin-bottom: 14px; }
.review-text { font-family: var(--font-disp); font-size: 17px; font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: 16px; }
.review-author { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); }
.pull-quote { font-family: var(--font-disp); font-size: clamp(20px,2.2vw,30px); font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 20px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy-dark); padding: 100px 0; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,169,77,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-section .display-lg em { color: var(--gold-light); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--navy-08); padding: 24px 0; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; background: none; border: none; cursor: pointer; text-align: left; padding: 0; }
.faq-btn h3 { font-family: var(--font-head); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); flex: 1; line-height: 1.5; }
.faq-arrow { color: var(--gold); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { display: none; padding-top: 14px; }
.faq-answer p { font-size: 15px; line-height: 1.8; }
.faq-cta { margin-top: 56px; text-align: center; padding: 48px; background: var(--cream); border: 1px solid var(--navy-08); }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 40px 64px; }
.footer-logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer-tagline { font-family: var(--font-disp); font-style: italic; font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact div { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-hours { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 14px; }
.footer-col h5 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 40px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── WA FAB ── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 9999;
  transition: var(--t);
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.wa-fab svg { width: 28px; height: 28px; }

/* ── LOCATIONS ── */
.locations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.location-card { background: var(--white); border: 1px solid var(--navy-08); padding: 28px; transition: var(--t); }
.location-card:hover { border-color: var(--gold); }
.location-card h3 { font-family: var(--font-disp); font-size: 24px; font-weight: 300; color: var(--navy); margin-bottom: 4px; }
.location-card h3 a { color: var(--navy); }
.location-card h3 a:hover { color: var(--gold-dark); }
.location-county { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.location-stats { display: flex; gap: 16px; margin: 14px 0; padding: 12px 0; border-top: 1px solid var(--navy-08); border-bottom: 1px solid var(--navy-08); }
.location-stats span { font-size: 12px; color: var(--text-soft); }
.location-svc-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.location-svc-links a { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); background: var(--cream); padding: 5px 10px; transition: var(--t); }
.location-svc-links a:hover { background: var(--gold); color: var(--navy-dark); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,30,62,0.8) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: var(--t); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-scope { font-family: var(--font-disp); font-size: 18px; color: #fff; font-style: italic; }
.gallery-city { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ── CITY STATS BOX ── */
.city-stats-box { background: var(--navy); padding: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--navy); }
.city-stat { background: var(--navy); padding: 16px 12px; text-align: center; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid rgba(255,255,255,0.1); }
.city-stat:last-child { border-right: none; }
.city-stat-n { font-family: var(--font-disp); font-size: 28px; font-weight: 300; color: var(--gold); }
.city-stat-l { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── NEIGHBORHOOD BOX ── */
.nbhd-box { padding: 20px; background: var(--cream); border: 1px solid var(--navy-08); }
.nbhd-box .label { margin-bottom: 12px; }

/* ── LOCAL TIP BOX ── */
.local-tip-box { background: var(--cream-warm); border-left: 3px solid var(--gold); padding: 18px 20px; }

/* ── SHOWROOM BOX ── */
.showroom-box { padding: 22px; background: var(--white); border: 1px solid var(--navy-08); }
.showroom-box .label { margin-bottom: 8px; }

/* ── AREAS BOX ── */
.areas-box { margin-top: 24px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-info-block h4 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.contact-info-block a { font-size: 16px; color: var(--navy); font-weight: 500; }
.contact-info-block a:hover { color: var(--gold-dark); }
.contact-info-block p { font-size: 13px; margin-top: 2px; }

/* ── FORM ── */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--navy-15);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 15px;
  transition: var(--t);
  outline: none;
  border-radius: var(--radius);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; position: relative; }
.process-step { background: var(--white); padding: 36px 28px; border: 1px solid var(--navy-08); position: relative; }
.process-num { font-family: var(--font-disp); font-size: 64px; font-weight: 300; color: var(--navy-08); line-height: 1; margin-bottom: 12px; }
.process-dot { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; margin-bottom: 16px; }
.process-step h3 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.process-step p { font-size: 14px; line-height: 1.75; }

/* ── APPOINTMENTS ── */
.appt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 36px; }
.appt-type { background: var(--white); border: 1px solid var(--navy-08); padding: 36px 28px; }
.appt-num { font-family: var(--font-disp); font-size: 48px; font-weight: 300; color: var(--navy-08); margin-bottom: 12px; }
.appt-type h3 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.appt-type p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.appt-addr { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; color: var(--text-soft); margin-bottom: 20px; }
.appt-offer { text-align: center; padding: 28px; background: var(--cream); border: 1px solid var(--navy-08); }

/* ── REFERRAL / PARTNERS ── */
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.info-card { background: var(--white); border: 1px solid var(--navy-08); padding: 32px; }
.info-card h3 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.info-card ul { display: flex; flex-direction: column; gap: 8px; padding-left: 0; }
.info-card li { font-size: 14px; padding-left: 16px; position: relative; }
.info-card li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 3px; }

/* ── RESOURCES ── */
.resources-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.resource-card { background: var(--white); border: 1px solid var(--navy-08); padding: 28px; }
.resource-card h3 { font-family: var(--font-disp); font-size: 20px; font-weight: 300; color: var(--navy); margin: 8px 0 10px; line-height: 1.4; }
.resource-card p { font-size: 13px; }

/* ── GIVEAWAY ── */
.giveaway-hero { background: var(--navy); padding: 80px; text-align: center; border: 2px solid var(--gold); }
.giveaway-hero h2 { font-family: var(--font-disp); font-size: 48px; font-weight: 300; color: var(--gold); }
.giveaway-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.giveaway-step { background: var(--white); padding: 28px; text-align: center; }
.giveaway-step .step-num { font-family: var(--font-disp); font-size: 52px; color: var(--navy-08); line-height: 1; }
.giveaway-step h3 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin: 12px 0 8px; }

/* ── PRIVACY/TERMS ── */
.legal-content { max-width: 760px; }
.legal-content h2 { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); margin: 36px 0 12px; }
.legal-content p { margin-bottom: 14px; font-size: 15px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 15px; margin-bottom: 6px; list-style: disc; }

/* ── THANK YOU ── */
.thankyou-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; }

/* ── PORTAL FEATURES ── */
.portal-features { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto; text-align: left; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .svc-grid     { grid-template-columns: repeat(3,1fr); }
  .svc-index-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .split-grid   { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .three-col    { grid-template-columns: 1fr; }
  .appt-grid    { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .giveaway-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container    { padding: 0 20px; }
  .section      { padding: 64px 0; }
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .hamburger    { display: flex; }
  .mobile-drawer{ display: flex; }
  .svc-grid     { grid-template-columns: 1fr 1fr; }
  .svc-index-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar    { display: none; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 20px 80px; }
  .city-stats-box { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .svc-grid     { grid-template-columns: 1fr; }
  .svc-index-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .btn-row      { flex-direction: column; align-items: flex-start; }
}

/* --- Navigation refinements (v4) --- */
.nav-wa{
  margin-left: 14px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .85;
  text-decoration: none;
}
.nav-wa:hover{ opacity: 1; text-decoration: underline; }

/* Utility text */
.muted{ color: var(--text-soft); }


/* --- Cards for timelines / showroom (v4) --- */
.mini-card{
  background: var(--white);
  border: 1px solid var(--navy-08);
  padding: 22px 20px;
  border-radius: 12px;
}
.h3{
  font-family: var(--font-head);
  font-size: 18px;
  margin: 8px 0 10px;
  color: var(--navy);
}

/* ─────────────────────────────────────────────
   POLISH PASS v1 (2026-02-24)
   - Better spacing rhythm
   - Stronger button hierarchy
   - Improved readability (type scale)
   ───────────────────────────────────────────── */

:root {
  --section-pad: 96px;
  --section-pad-sm: 72px;
}

.section { padding: var(--section-pad) 0; }
.section--sm { padding: var(--section-pad-sm) 0; }

/* Headings: slightly tighter and clearer hierarchy */
.display-md, .display-sm { letter-spacing: -0.01em; }

/* Buttons: consistent height + focus state */
.btn { min-height: 46px; }
.btn:focus-visible { outline: 3px solid rgba(201,169,77,0.35); outline-offset: 3px; }

/* Cards: crisp hover + consistent padding */
.card, .service-card, .feature-card, .city-card { box-shadow: var(--shadow-sm); }
.card:hover, .service-card:hover, .feature-card:hover, .city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Improve text contrast on cream backgrounds */
.bg-cream p, .bg-cream-warm p, .bg-white p { color: #2E3352; }

/* Mobile rhythm */
@media (max-width: 900px) {
  :root { --section-pad: 76px; --section-pad-sm: 56px; }
  .container { padding: 0 24px; }
}

@media (max-width: 520px) {
  :root { --section-pad: 68px; --section-pad-sm: 52px; }
  html { font-size: 18px; }
}

/* Nearby cities (vicinities) */
.nearby-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.btn-sm{
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.nearby-mi{
  opacity: .65;
  font-weight: 600;
  margin-left: 10px;
}


/* Service areas (services pages) */
.svc-areas-card{border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:22px;background:#fff;box-shadow:0 10px 30px rgba(15,23,42,.06)}
.svc-areas-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:22px;align-items:start}
@media (max-width: 860px){.svc-areas-grid{grid-template-columns:1fr}}
.chips-wrap{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.chip-link{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;border:1px solid rgba(15,23,42,.12);text-decoration:none;font-weight:600;line-height:1}
.chip-link:hover{transform:translateY(-1px);box-shadow:0 10px 18px rgba(15,23,42,.08)}
.major-cities{margin-top:14px;padding-top:14px;border-top:1px dashed rgba(15,23,42,.12)}
.svc-areas-cta{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.h4{font-size:1.05rem;margin:0 0 6px 0}
.h5{font-size:.95rem;font-weight:700;margin:0 0 6px 0}


/* Offer bar (site-wide) */
.offer-bar{
  position:fixed; top:0; left:0; right:0; z-index:9999;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,23,42,.10)
}
.offer-bar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:8px 0
}
.offer-bar__msg{
  font-weight:650;
  font-size:14.5px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  min-width:0;
  flex:1
}
.offer-bar__msg .muted{font-weight:500}
.offer-bar__actions{
  display:flex; gap:10px; flex-wrap:nowrap; align-items:center; flex:0 0 auto
}
.offer-bar .btn{padding:10px 14px; font-size:13px; line-height:1}
@media (max-width: 520px){
  .offer-bar .btn{padding:9px 12px; font-size:12.5px}
}
@media (max-width: 420px){
  .offer-bar__actions .btn.primary{display:none}
}


/* Nav underline polish */
.nav-links a{position:relative}
.nav-links a:after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:2px;border-radius:2px;transform:scaleX(0);transform-origin:left;transition:transform .18s ease;background:currentColor;opacity:.75}
.nav-links a:hover:after,.nav-links a.active:after{transform:scaleX(1)}


/* --- Easy UX/Conversion Enhancements --- */
.nav-menu a.active {
  position: relative;
}
.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  opacity: .9;
  border-radius: 999px;
}

.reviews-summary{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  font-size: 14px;
}
.stars-inline{
  letter-spacing: 1px;
}

.chip-row{
  margin-top: var(--space-6);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.8);
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}



/* Mobile priority enhancements */
.mobile-sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.96);
  border-top:1px solid rgba(15,23,42,.10);
  backdrop-filter:saturate(140%) blur(10px);
  display:none;
}
.mobile-sticky-cta .mobile-sticky-cta__inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}
.mobile-sticky-cta .btn{
  flex:1;
  padding:12px 14px;
  font-size:15px;
  line-height:1.1;
  white-space:nowrap;
}
.mobile-sticky-cta .btn.secondary{
  background:#fff;
}
@media (max-width: 860px){
  /* Reduce offer-bar height on mobile */
  .offer-bar__msg{font-size:13px}
  .offer-bar__actions .btn{padding:10px 12px; font-size:14px}
}
@media (max-width: 768px){
  .mobile-sticky-cta{display:block;}
  body{padding-bottom:90px;}
}

/* Service FAQ accordion */
.faq-accordion{
  margin-top:26px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.faq-accordion .faq-item + .faq-item{border-top:1px solid rgba(15,23,42,.08);}
.faq-accordion button{
  width:100%;
  text-align:left;
  padding:16px 18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  background:transparent;
  border:0;
  cursor:pointer;
  font:inherit;
}
.faq-accordion button .q{
  font-weight:700;
}
.faq-accordion button .chev{
  width:18px; height:18px;
  opacity:.75;
  flex:0 0 auto;
  transition:transform .2s ease;
}
.faq-accordion .a{
  padding:0 18px 16px 18px;
  color:rgba(15,23,42,.85);
  display:none;
}
.faq-accordion .faq-item[open="true"] .a{display:block;}
.faq-accordion .faq-item[open="true"] button .chev{transform:rotate(180deg);}


/* Floating WhatsApp (city pages) */
.wa-float{
  position:fixed;
  right:16px;
  bottom:calc(env(safe-area-inset-bottom) + 92px);
  z-index:10000;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(15,23,42,0.92);
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 14px 34px rgba(0,0,0,0.18);
  transform:translateY(10px);
  opacity:0;
  pointer-events:none;
  transition:transform .18s ease, opacity .18s ease;
  text-decoration:none;
}
.wa-float.is-visible{opacity:1;transform:translateY(0);pointer-events:auto;}
.wa-float__icon{font-size:16px;line-height:1}
.wa-float__text{font-weight:700;font-size:13px;letter-spacing:.2px}
@media (min-width: 901px){
  .wa-float{bottom:24px}
}
@media (max-width: 720px){
  /* keep above the mobile sticky CTA */
  .wa-float{bottom:calc(env(safe-area-inset-bottom) + 96px)}
}


/* --- Offer bar sizing (single-line, mobile-first) --- */
.offerbar{
  padding: 6px 12px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.offerbar__inner{
  gap: 10px !important;
  flex-wrap: nowrap !important;
}
.offerbar__text{
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.offerbar .btn{
  padding: 6px 10px !important;
  font-size: 13px !important;
}
@media (max-width: 420px){
  .offerbar{font-size: 13px !important;}
  .offerbar__text{max-width: 52vw !important;}
}


/* Before/After micro stories */
.ba-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:22px}
.ba-card{background:var(--white);border:1px solid var(--navy-08);border-radius:16px;padding:18px;box-shadow:var(--shadow-sm)}
.ba-card__top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
.ba-card h3{margin:0;font-size:1.05rem}
.ba-tag{display:inline-flex;align-items:center;gap:8px;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-soft);border:1px solid var(--navy-08);padding:8px 10px;border-radius:999px;white-space:nowrap}
.ba-cols{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ba-col__label{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--navy);margin-bottom:8px}
.ba-list{margin:0;padding-left:18px;color:var(--text);font-size:14px;line-height:1.6}
@media (max-width: 980px){.ba-grid{grid-template-columns:1fr}.ba-cols{grid-template-columns:1fr}}


/* ---- Utility aliases & hub components (added) ---- */
.btn-primary{ background: var(--navy); color: var(--white); }
.btn-primary:hover{ background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary{ background: transparent; color: var(--navy); border: 1px solid rgba(17,33,64,0.18); }
.btn-secondary:hover{ background: rgba(17,33,64,0.06); transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--navy); border: 1px solid rgba(17,33,64,0.18); }
.btn-ghost:hover{ background: rgba(17,33,64,0.06); transform: translateY(-2px); }
.btn-outline{ background: transparent; color: var(--navy); border: 1px solid rgba(17,33,64,0.18); }
.btn-outline:hover{ background: rgba(17,33,64,0.06); transform: translateY(-2px); }

.trust-row{ display:flex; flex-wrap:wrap; gap:10px; }
.trust-pill{ display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px; background: rgba(17,33,64,0.06); color: var(--navy); font-size: 12px; }

.cta-banner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px; border-radius: 0; background: rgba(17,33,64,0.04); border: 1px solid rgba(17,33,64,0.10); }
.cta-actions{ display:flex; flex-wrap:wrap; gap:10px; }

.mini-grid{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 980px){ .mini-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px){ .mini-grid{ grid-template-columns: 1fr; } .cta-banner{ flex-direction: column; align-items: stretch; } .cta-actions a{ width:100%; justify-content:center; } }

.chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{ display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px; background: rgba(255,255,255,0.9); border: 1px solid rgba(17,33,64,0.12); color: var(--navy); text-decoration:none; font-size:12px; }
.chip:hover{ background: rgba(17,33,64,0.06); }


/* ═══════════════════════════════════════════════
   PRODUCTION POLISH — v2.0 (2026-02-25)
   - Skip-to-content for accessibility
   - Back-to-top button
   - Smooth scroll
   - Enhanced mobile drawer
   - Active nav state
   - Footer improvements
   - 404 page
   - Performance & micro-interactions
   ═══════════════════════════════════════════════ */

/* ── Smooth Scroll ── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Skip Link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── Active Nav State ── */
.nav-links a.active {
  color: var(--gold);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Mobile Drawer Enhancements ── */
.drawer-divider {
  border: none;
  border-top: 1px solid rgba(27, 47, 94, 0.08);
  margin: 8px 0;
}
.drawer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 600;
}
.mobile-drawer .btn-gold {
  display: block;
  text-align: center;
}

/* ── Nav Logo Background (polish) ── */
.nav-logo {
  display: flex;
  align-items: center;
}
.nav--hero .nav-logo {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--navy-08, rgba(27,47,94,0.08));
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(27, 47, 94, 0.10);
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(27, 47, 94, 0.25);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ── Footer Enhancements ── */
.footer-view-all {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-view-all:hover {
  text-decoration: underline;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Image Loading Skeleton ── */
img[loading="lazy"] {
  background: linear-gradient(110deg, #f0f0f0 8%, #fafafa 18%, #f0f0f0 33%);
  background-size: 200% 100%;
}

/* ── Focus Visible (keyboard nav only) ── */
:focus-visible {
  outline: 3px solid rgba(201, 169, 77, 0.5);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ── Page Hero Breadcrumb Enhancement ── */
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold);
}

/* ── Offer Bar (ready to enable) ── */
.offerbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  text-align: center;
  z-index: 1001;
}
.offerbar__close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}
.offerbar__close:hover { color: var(--white); }

/* ── 404 Page ── */
.page-404 { background: var(--cream, #faf9f6); }
.page-404 .btn-row { flex-wrap: wrap; gap: 12px; }

/* ── Print Styles ── */
@media print {
  .nav, .trust-bar, .wa-fab, .back-to-top, .footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 80%; }
}

/* ── Scroll Reveal Animation ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}


/* ═══════════════════════════════════════════════
   HOMEPAGE LAYOUT SYSTEM — v2.2 (2026-02-25)
   Complete CSS for index.php BEM structure
   ═══════════════════════════════════════════════ */

/* ── Promo Bar ── */
.promo-bar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  font-size: 13px;
  position: relative;
  z-index: 1001;
}
.promo-bar__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-bar__text { color: rgba(255,255,255,0.85); }
.promo-bar__text strong { color: var(--white); }
.promo-bar__text em { color: var(--gold); font-style: normal; font-weight: 600; }
.promo-bar__ctas { display: flex; gap: 10px; flex-shrink: 0; }
.promo-bar__btn {
  display: inline-flex; align-items: center; padding: 6px 16px;
  border-radius: 6px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
}
.promo-bar__btn:hover { background: rgba(255,255,255,0.1); }
.promo-bar__btn--accent { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.promo-bar__btn--accent:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .promo-bar__inner { flex-direction: column; gap: 8px; }
  .promo-bar__text { font-size: 12px; }
}

/* ── Nav Updates: transparent logo, bigger links, centered, no CTA ── */
.nav-logo {
  display: flex; align-items: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.nav--hero .nav-logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.nav-inner {
  justify-content: center;
  gap: 40px;
}
.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.12em;
}
.nav-cta { display: none; } /* Hidden — CTA is now in promo bar */

/* ── Eyebrow / Label ── */
.eyebrow {
  font-family: var(--font-head, sans-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

/* ── Section System ── */
.section--dark {
  background: var(--navy-lighter, #1d2d4f);
  color: var(--white);
}
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--light {
  background: var(--cream, #faf9f6);
  color: var(--navy);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-header h2 {
  color: inherit;
  margin-bottom: 12px;
}
.section-header p {
  opacity: 0.75;
}
.section--dark .eyebrow,
.section--navy .eyebrow { color: var(--gold); }
.section--dark h2,
.section--navy h2 { color: var(--white); }

/* ── Grid System ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── Hero (BEM) ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,47,94,0.85) 0%, rgba(27,47,94,0.5) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 140px 0 100px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title span { color: var(--gold-light, #d4b96a); }
.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 12px;
}
.hero__scroll span {
  display: block; width: 4px; height: 8px;
  background: rgba(255,255,255,0.5); border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(27,47,94,0.06);
}
.trust-strip__inner {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-strip__item {
  font-size: 14px; color: var(--navy);
  font-family: var(--font-head, sans-serif);
}
.trust-strip__item strong { font-size: 18px; color: var(--gold-dark, #b89940); }

/* ── Philosophy Quote ── */
.philosophy {
  padding: 80px 0;
  background: var(--cream, #faf9f6);
  text-align: center;
}
.philosophy__text {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--navy);
  font-family: var(--font-head, serif);
  line-height: 1.4;
}

/* ── Service Card (BEM icon variant) ── */
.service-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.section--dark .service-card,
.section--navy .service-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.section--dark .service-card h3,
.section--navy .service-card h3 { color: var(--white); }
.section--dark .service-card p,
.section--navy .service-card p { color: rgba(255,255,255,0.7); }
.section--dark .card-link,
.section--navy .card-link { color: var(--gold); }

/* ── Comparison Grid ── */
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.comparison-card {
  padding: 32px; border-radius: 16px;
}
.comparison-card h3 { margin-bottom: 16px; font-size: 1.2rem; }
.comparison-card ul { padding-left: 20px; }
.comparison-card ul li { margin-bottom: 8px; font-size: 15px; line-height: 1.6; }
.comparison-card.crown {
  background: rgba(201,169,77,0.08);
  border: 2px solid var(--gold);
}
.comparison-card.crown h3 { color: var(--gold); }
.comparison-card.traditional {
  background: rgba(27,47,94,0.04);
  border: 1px solid rgba(27,47,94,0.12);
}
@media (max-width: 620px) { .comparison-grid { grid-template-columns: 1fr; } }

/* ── Stats Grid ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head, sans-serif);
}
.stat-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
@media (max-width: 620px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Process Steps ── */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step {
  text-align: center;
  padding: 24px;
}
.step__num {
  font-size: 28px; font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head, sans-serif);
  margin-bottom: 12px;
}
.step h4 { color: var(--white); margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.65); font-size: 14px; }
@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ── Project Cards ── */
.project-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
.project-card__img { overflow: hidden; }
.project-card__img img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__body {
  padding: 20px;
}
.project-card__body h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.project-card__body p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ── Testimonial Cards ── */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0 0 14px;
}
.testimonial-card cite {
  font-size: 13px; color: var(--gold);
  font-style: normal; font-weight: 600;
}

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  width: 100%; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600;
  color: var(--white);
  text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-icon::after {
  content: '+'; font-size: 22px; color: var(--gold);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  content: '−';
}
.faq-answer {
  padding: 0 0 20px;
  color: rgba(255,255,255,0.7);
  font-size: 15px; line-height: 1.7;
}
.faq-answer a { color: var(--gold); }

/* ── Area Pills ── */
.area-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.area-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.area-pill:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ── CTA Banner ── */
.cta-banner[data-block] {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark, #111E3E) 0%, var(--navy-mid, #1B2F5E) 50%, var(--navy-dark, #111E3E) 100%);
  text-align: center;
  color: var(--white);
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
}
/* Decorative gold lines top and bottom */
.cta-banner[data-block]::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #C9A94D), transparent);
}
.cta-banner[data-block]::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #C9A94D), transparent);
}
.cta-banner[data-block] h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-family: var(--font-disp); font-weight: 300; }
.cta-banner[data-block] h2 em { color: var(--gold-light, #E2C97E); font-style: italic; }
.cta-banner[data-block] p { color: rgba(255,255,255,0.65); margin: 16px 0 36px; font-size: 17px; font-weight: 300; }
.cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── Feature Split ── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.feature-split__img { overflow: hidden; }
.feature-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-split__content {
  padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-split__content h2 { margin-bottom: 16px; }
.feature-split__content .small {
  font-size: 13px; color: var(--text-soft, #888);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .feature-split { grid-template-columns: 1fr; }
}

/* ── Reveal Delays ── */
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }

/* ── Button sizes ── */
.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-xl { padding: 16px 36px; font-size: 15px; }

/* ── Mobile Bar ── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-bar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.mobile-bar__inner a {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 10px 0;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 11px;
}
.mobile-bar__inner svg { width: 20px; height: 20px; }
.mobile-bar__inner a:hover { color: var(--gold); }
@media (max-width: 768px) { .mobile-bar { display: block; } }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 80px; right: 20px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { transform: scale(1.1); }

/* ── Text Center Utility ── */
.text-center { text-align: center; }
.center { text-align: center; }
.mt-28 { margin-top: 28px; }

/* ── Card Link ── */
.card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* ── Transformation Cards ── */
.transform-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.transform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.transform-card__img { overflow: hidden; }
.transform-card__img img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
}
.transform-card:hover .transform-card__img img { transform: scale(1.05); }
.transform-card__body { padding: 24px; }
.transform-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(201,169,77,0.12);
  color: var(--gold-dark, #b89940);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.transform-card__body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.transform-card__body p {
  font-size: 14px;
  color: var(--text-soft, #666);
  line-height: 1.7;
}

/* ── 10-City Grid (2 rows × 5 columns) ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.city-card {
  display: block;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all 0.25s;
}
.city-card:hover {
  background: rgba(201,169,77,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.city-card__num {
  font-family: var(--font-head, sans-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.city-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.city-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.city-card:hover h3 { color: var(--gold); }
.city-card:hover p { color: rgba(255,255,255,0.75); }

@media (max-width: 980px) {
  .city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .city-grid { grid-template-columns: 1fr; }
}

/* ── btn-navy utility ── */
.btn-navy {
  display: inline-block;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy-lighter, #2a4480); }


/* ═══════════════════════════════════════════════════════════
   CROWN STUDIO v2.6 — Stat Counters + Section Colors + Logo
   ═══════════════════════════════════════════════════════════ */

/* ── Stats Section enhanced layout ── */
.stats-section {
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Override old stats-grid inside stats-section */
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 52px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }

/* Flexible number + suffix row */
.stats-section .stat-number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-disp, 'Cormorant Garamond', serif);
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-prefix {
  font-size: 0.48em;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--gold-light, #E2C97E);
  line-height: 1;
}
.stat-suffix {
  font-size: 0.42em;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--gold-light, #E2C97E);
  line-height: 1;
}
.stat-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.stats-section .stat-label {
  display: block;
  font-family: var(--font-head, 'Cinzel', serif);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
}

/* Gold bar that slides in when counter finishes */
.stat-bar {
  display: block;
  height: 2px;
  width: 0;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-item.counted .stat-bar { width: 44px; }

@media (max-width: 720px) {
  .stats-section .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 480px) {
  .stats-section .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section variants for better differentiation ── */
.section--slate {
  background: #243260;
  color: var(--white);
}
.section--slate .eyebrow { color: var(--gold-light, #e2c97e); }
.section--slate h2 { color: var(--white); }
.section--slate p { color: rgba(255,255,255,0.70); }
.section--slate .comparison-card.traditional { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.section--slate .comparison-card.traditional h3,
.section--slate .comparison-card.traditional li { color: rgba(255,255,255,0.65); }
.section--slate .faq-question { color: var(--white); }
.section--slate .faq-answer { color: rgba(255,255,255,0.72); }
.section--slate .faq-item { border-bottom-color: rgba(255,255,255,0.10); }

.section--charcoal {
  background: #181e2c;
  color: var(--white);
}
.section--charcoal .eyebrow { color: var(--gold-light, #e2c97e); }
.section--charcoal h2, .section--charcoal h4 { color: var(--white); }
.section--charcoal p { color: rgba(255,255,255,0.65); }
.section--charcoal .step__num { color: var(--gold); }
.section--charcoal .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }

.section--navy-deep {
  background: #0d1830;
  color: var(--white);
}
.section--navy-deep .eyebrow { color: var(--gold); }
.section--navy-deep h2, .section--navy-deep h3 { color: var(--white); }
.section--navy-deep p { color: rgba(255,255,255,0.65); }
.section--navy-deep .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }

.section--cream-warm {
  background: var(--cream-warm, #F5F0E8);
  color: var(--text-dark, #1b2f5e);
}
.section--cream-warm .eyebrow { color: var(--gold-dark, #a8882a); }
.section--cream-warm h2 { color: var(--navy, #1b2f5e); }
.section--cream-warm p { color: var(--text-mid, #3d3d5c); }
.section--cream-warm .transform-card { background: var(--white); box-shadow: 0 4px 20px rgba(27,47,94,0.08); }

/* bg-white used for services grid */
.bg-white { background: var(--white); }
.bg-white h2, .bg-white .display-md { color: var(--navy); }
.bg-white .eyebrow { color: var(--gold-dark, #a8882a); }
.bg-white p { color: var(--text-mid); }

/* ── Footer logo: transparent background like the nav ── */
.footer-logo {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  display: block;
  margin-bottom: 16px;
}


/* ── v2.6 — 15-city grid + neighborhood tags ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 1100px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .city-grid { grid-template-columns: 1fr; } }

.city-card {
  display: block;
  padding: 28px 22px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border: none;
}
.city-card:hover { background: rgba(201,169,77,0.10); }
.city-card__num { font-size: 11px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 8px; font-family: var(--font-head); }
.city-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.city-card p  { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.5; margin: 0; }

/* Location page neighborhood tags */
.location-nbhd-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201,169,77,0.10);
  border: 1px solid rgba(201,169,77,0.25);
  border-radius: 3px;
  font-size: 11px;
  color: var(--gold);
  margin: 2px 2px 2px 0;
  letter-spacing: 0.04em;
}
.section--navy .location-nbhd-tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }


/* ── Footer wordmark (replaces logo image) ── */
.footer-wordmark {
  font-family: var(--font-head, 'Cinzel', serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.1;
}
.footer-wordmark-sub {
  color: var(--gold, #C9A94D);
  font-style: italic;
  font-family: var(--font-disp, 'Cormorant Garamond', serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

/* ═══════════════════════════════════════════════════════
   HERO SLIDESHOW
   ═══════════════════════════════════════════════════════ */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.06);
  will-change: opacity, transform;
}
.hero__slide--active {
  opacity: 1;
  transform: scale(1.0);
}
.hero__slide--prev {
  opacity: 0;
  transform: scale(1.0);
}

/* Slide dots */
.hero__dots {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.hero__dot--active {
  background: var(--gold, #C9A94D);
  width: 22px;
  border-radius: 3px;
}

/* Progress bar at bottom of hero */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(201, 169, 77, 0.4);
  z-index: 3;
  width: 0%;
  transition: none;
}
.hero__progress--animating {
  transition: width 5s linear;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════
   SERVICE LIST GRID (city index pages)
   ═══════════════════════════════════════════════════════ */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(27,47,94,0.08);
}
@media (max-width: 640px) { .svc-list-grid { grid-template-columns: 1fr; } }

.svc-list-row {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(27,47,94,0.08);
  border-right: 1px solid rgba(27,47,94,0.08);
  transition: background 0.2s;
}
.svc-list-row:hover { background: rgba(201,169,77,0.04); }
.svc-list-name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 4px;
  font-weight: 600;
}
.svc-list-name:hover { color: var(--gold); }
.svc-list-desc {
  font-size: 13px;
  color: var(--text-soft, #666);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   CROWN STUDIO DESIGN — MOBILE OVERHAUL v4.0
   Strategy: All rules below are inside @media blocks.
   Desktop (>768px) is untouched. 100% additive.
   ═══════════════════════════════════════════════════════════════════ */

/* ── GLOBAL RESETS & VARIABLES ─────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --sticky-bar-h: 68px;
    --section-pad: 52px;
    --section-pad-sm: 40px;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { font-size: 16px; -webkit-text-size-adjust: 100%; }
  body {
    overflow-x: hidden;
    padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
  }
  img, video { max-width: 100%; height: auto; }
  .container { padding: 0 18px; max-width: 100%; }
  .section    { padding: var(--section-pad) 0; }
  .section--sm { padding: var(--section-pad-sm) 0; }
}

/* ── OFFER BAR (JS-injected) ───────────────────────────────────── */
@media (max-width: 768px) {
  .offer-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10000;
    background: rgba(27,47,94,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,169,77,0.3);
  }
  .offer-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 10px;
  }
  .offer-bar__msg {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
  }
  .offer-bar__msg .muted {
    display: none; /* too long on mobile */
  }
  .offer-bar__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .offer-bar__actions .btn {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    min-height: 36px;
    white-space: nowrap;
  }
  /* Hide secondary button on very small screens */
}
@media (max-width: 380px) {
  .offer-bar__actions .btn:first-child { display: none; }
  .offer-bar__actions .btn:last-child { padding: 8px 12px; }
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--offer-h, 0);
    left: 0; right: 0;
    z-index: 9999;
    height: var(--nav-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(27,47,94,0.12);
  }
  /* Override the hero transparent nav on mobile — always solid */
  .nav--hero {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 2px 16px rgba(27,47,94,0.12) !important;
  }

  .nav-inner {
    height: var(--nav-h);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .nav-logo {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    flex-shrink: 0;
  }
  .nav-logo img {
    height: 40px !important;
    width: auto;
  }
  .nav.scrolled .nav-logo img { height: 36px !important; }

  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  /* Animate hamburger to X when open */
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── MOBILE DRAWER ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Override all previous mobile-drawer styles with single clean definition */
  .mobile-drawer {
    display: flex !important;  /* always rendered, controlled by transform */
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9998;
    padding: calc(var(--nav-h) + var(--offer-h, 0px) + 16px) 0 calc(80px + env(safe-area-inset-bottom)) 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Hidden offscreen by default */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  /* Overlay effect via nav backdrop */
  .mobile-drawer::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(27,47,94,0.4);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-drawer.open::before { opacity: 1; }

  /* Drawer links — clean, readable, well-spaced */
  .mobile-drawer a {
    font-family: var(--font-head, sans-serif);
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(27,47,94,0.07);
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 52px;
    transition: background 0.15s, color 0.15s;
    font-weight: 600;
  }
  .mobile-drawer a:active,
  .mobile-drawer a:hover { background: rgba(201,169,77,0.06); color: var(--gold-dark, #b89940); }
  .mobile-drawer a:last-of-type { border-bottom: none; }

  /* Divider */
  .drawer-divider {
    border: none;
    border-top: 2px solid rgba(27,47,94,0.08);
    margin: 8px 24px;
  }

  /* WhatsApp link in drawer */
  .drawer-wa {
    color: #25d366 !important;
    font-weight: 700 !important;
    gap: 10px;
  }

  /* Schedule CTA in drawer */
  .mobile-drawer .btn-gold {
    margin: 16px 24px 0;
    display: flex !important;
    justify-content: center;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 0.2em;
    border-radius: 6px;
    min-height: 52px;
    align-items: center;
  }
}

/* ── HERO SECTION ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    min-height: 100vh; /* fallback */
    align-items: flex-end;
  }
  .hero__content {
    padding: calc(var(--nav-h) + var(--offer-h, 44px) + 24px) 18px 120px;
    max-width: 100%;
    width: 100%;
  }
  .hero__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .hero__title span { display: block; }
  .hero__sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
    color: rgba(255,255,255,0.82);
  }
  .hero__ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
    font-size: 11px;
    min-height: 50px;
  }
  .hero__dots {
    right: 50%;
    transform: translateX(50%);
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
  .hero__progress { height: 3px; }
  .hero__scroll { display: none; }

  /* Hero overlay slightly darker on mobile for text legibility */
  .hero__overlay {
    background: linear-gradient(180deg, rgba(27,47,94,0.55) 0%, rgba(27,47,94,0.82) 100%) !important;
  }
}

/* ── TRUST STRIP ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .trust-strip { padding: 14px 0; overflow: hidden; }
  .trust-strip__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 28px;
    animation: ticker 22s linear infinite;
    width: max-content;
    padding: 0 18px;
    will-change: transform;
  }
  .trust-strip__item { font-size: 11px; white-space: nowrap; }
  .trust-strip__item strong { font-size: 14px; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PHILOSOPHY ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .philosophy { padding: 44px 0; }
  .philosophy__text { font-size: clamp(1.1rem, 4.5vw, 1.45rem); line-height: 1.55; }
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .display-xl { font-size: clamp(32px,  9vw, 48px); }
  .display-lg { font-size: clamp(26px, 7.5vw, 38px); }
  .display-md { font-size: clamp(22px,  6vw, 30px); }
  .display-sm { font-size: clamp(18px, 5.5vw, 24px); }
  .lead       { font-size: clamp(15px,  4vw, 17px); line-height: 1.65; }
  h1, h2, h3  { word-break: break-word; overflow-wrap: break-word; }
  .eyebrow    { font-size: 10px; letter-spacing: 0.22em; }
  .label      { font-size: 10px; letter-spacing: 0.22em; }
}

/* ── SECTION HEADER ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-header, .section-head {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .section-header h2 { font-size: clamp(20px, 6vw, 28px); }
  .section-header p  { font-size: 14px; line-height: 1.6; }
  .gold-rule { margin-left: auto !important; margin-right: auto !important; }
}

/* ── SERVICES GRID (homepage) ─────────────────────────────────── */
@media (max-width: 768px) {
  .svc-index-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(27,47,94,0.06);
    border: 1px solid rgba(27,47,94,0.06);
    border-radius: 12px;
    overflow: hidden;
  }
  .svc-index-card {
    background: var(--white);
    padding: 18px 14px;
    border-radius: 0;
    border: none !important;
    box-shadow: none !important;
  }
  .svc-index-card:hover { transform: none; }
  .svc-index-num  { font-size: 10px; }
  .svc-index-dba  { font-size: 9px; }
  .svc-index-card h3 { font-size: 13px; line-height: 1.3; margin-bottom: 4px; }
  .svc-index-card p  { font-size: 11px; line-height: 1.4; }
}
@media (max-width: 360px) {
  .svc-index-grid { grid-template-columns: 1fr; }
}

/* ── COMPARISON TABLE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; gap: 12px; }
  .comparison-card { padding: 20px 18px; border-radius: 12px; }
  .comparison-card h3 { font-size: 16px; margin-bottom: 12px; }
  .comparison-card ul { padding-left: 18px; }
  .comparison-card ul li { font-size: 13px; margin-bottom: 7px; line-height: 1.5; }
}

/* ── STATS ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 28px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-child(even)   { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)      { border-bottom: none; }
  .stats-section .stat-number  { font-size: clamp(36px, 9vw, 52px); }
}

/* ── PROCESS STEPS ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2px; }
  .step { padding: 20px 14px; text-align: center; }
  .step__num { font-size: 22px; margin-bottom: 8px; }
  .step h4 { font-size: 13px; }
  .step p  { font-size: 12px; }
}
@media (max-width: 400px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO CARDS (horizontal scroll) ──────────────────────── */
@media (max-width: 768px) {
  .section--navy-deep .grid-3 {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 4px 18px 16px;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .section--navy-deep .grid-3::-webkit-scrollbar { display: none; }
  .section--navy-deep .grid-3 .project-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    border-radius: 12px;
  }
  .project-card__img img { height: 200px; }
  .project-card__body { padding: 16px; }
  .project-card__body h3 { font-size: 14px; }
  .project-card__body p  { font-size: 12px; }

  /* Scroll hint */
  .portfolio-scroll-hint {
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
  }
}

/* ── TESTIMONIALS (horizontal scroll) ────────────────────────── */
@media (max-width: 768px) {
  .section--navy .grid-3:not(.process-steps) {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 4px 18px 16px;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .section--navy .grid-3:not(.process-steps)::-webkit-scrollbar { display: none; }
  .section--navy .grid-3:not(.process-steps) .testimonial-card,
  .section--navy .grid-3:not(.process-steps) .review-card {
    flex: 0 0 82vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}

/* ── FEATURE SPLIT (showroom) ─────────────────────────────────── */
@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feature-split__img {
    height: 260px;
    overflow: hidden;
  }
  .feature-split__img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
  }
  .feature-split__content {
    padding: 32px 18px;
  }
  .feature-split__content h2 { font-size: clamp(20px, 6vw, 28px); }
  .feature-split__content ul { padding-left: 14px; }
  .feature-split__content li { font-size: 14px; margin-bottom: 8px; }
}

/* ── FAQ ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-wrap { padding: 0; }
  .faq-question {
    font-size: 14px;
    padding: 18px 0;
    line-height: 1.45;
  }
  .faq-answer { font-size: 14px; line-height: 1.65; }
}

/* ── CITY GRID (homepage service areas) ──────────────────────── */
@media (max-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px;
    background: rgba(27,47,94,0.08);
    border-radius: 12px;
    overflow: hidden;
  }
  .city-card {
    background: rgba(255,255,255,0.04);
    padding: 16px 12px;
    border: none !important;
    border-radius: 0 !important;
  }
  .city-card h3   { font-size: 13px; margin-bottom: 3px; }
  .city-card p    { font-size: 11px; }
  .city-card__num { font-size: 9px; margin-bottom: 3px; }
}
@media (max-width: 360px) {
  .city-grid { grid-template-columns: 1fr !important; }
}

/* ── CTA BANNER ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-banner[data-block] { padding: 56px 0; }
  .cta-banner[data-block] h2 { font-size: clamp(22px, 7vw, 30px); }
  .cta-banner[data-block] p  { font-size: 14px; margin: 10px 0 24px; }
  .cta-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 18px;
  }
  .cta-group .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }
}

/* ── FOOTER ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer { padding: 44px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 0 18px 44px;
  }
  .footer-wordmark     { font-size: 1.1rem; }
  .footer-tagline      { font-size: 14px; }
  .footer-col h5       { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 12px; }
  .footer-col ul       { gap: 8px; }
  .footer-col a        { font-size: 14px; min-height: 36px; display: inline-flex; align-items: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .footer-legal { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .footer-legal a { font-size: 12px; }
}

/* ── MOBILE STICKY CTA BAR ────────────────────────────────────── */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block !important;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9990;
    background: rgba(255,255,255,0.98);
    border-top: 2px solid rgba(27,47,94,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(27,47,94,0.12);
  }
  .mobile-sticky-cta__inner {
    display: flex;
    gap: 8px;
    align-items: stretch;
  }
  /* WhatsApp button - green */
  .mobile-sticky-cta .btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    flex: 0 0 auto;
    padding: 13px 18px;
    font-size: 11px;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-head, sans-serif);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  /* Schedule button - navy/gold */
  .mobile-sticky-cta .btn-schedule {
    background: var(--navy);
    color: #fff;
    border: none;
    flex: 1;
    padding: 13px 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-head, sans-serif);
    font-weight: 700;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .mobile-sticky-cta .btn-schedule:active { background: var(--gold); color: var(--navy); }
}

/* ── WHATSAPP FAB ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .wa-fab {
    display: none !important; /* replaced by sticky CTA bar on mobile */
  }
}

/* ── BACK TO TOP ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .back-to-top {
    bottom: calc(var(--sticky-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    width: 40px; height: 40px;
    font-size: 14px;
  }
}

/* ── PAGE HERO (inner pages) ──────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-h) + var(--offer-h, 44px) + 24px) 0 48px;
    min-height: auto;
  }
  .page-hero h1 {
    font-size: clamp(22px, 7vw, 32px);
    margin-top: 10px;
    line-height: 1.2;
  }
  .page-hero .lead { font-size: 14px; line-height: 1.6; }
  .page-hero .eyebrow { font-size: 9px; }
  .breadcrumb {
    font-size: 10px;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .btn-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }
  .btn-row .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 11px;
  }
}

/* ── CITY INDEX PAGES ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Split grid stacks vertically */
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .feature-item { padding: 10px 12px; }
  .feature-item h4 { font-size: 10px; line-height: 1.4; }

  /* Why box */
  .why-box { padding: 20px 16px; }
  .why-item { gap: 10px; }
  .why-item p { font-size: 13px; }

  /* City stats - 3 columns stays */
  .city-stats-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .city-stat { padding: 14px 8px; }
  .city-stat-n { font-size: 18px; }
  .city-stat-l { font-size: 9px; }

  /* Neighborhoods */
  .nbhd-box { padding: 14px; }
  .area-tag { font-size: 10px; padding: 5px 10px; }

  /* Service tag cloud */
  .svc-tag-cloud { margin: 16px 0 24px; }
  .svc-tag {
    font-size: 10px;
    padding: 7px 10px;
    margin: 2px;
  }

  /* Service list grid - 1 column */
  .svc-list-grid { grid-template-columns: 1fr; }
  .svc-list-row { padding: 14px 16px; }
  .svc-list-name { font-size: 12px; }
  .svc-list-desc { font-size: 12px; }

  /* Local tip box */
  .local-tip-box { padding: 14px 16px; }
  .local-tip-box p { font-size: 13px; }

  /* Showroom box */
  .showroom-box { padding: 14px 16px; }

  /* Review stars */
  .review-stars { display: flex; justify-content: center; }

  /* Pull quote */
  .pull-quote { font-size: clamp(16px, 4.5vw, 22px); line-height: 1.5; }

  /* CTA section in city pages */
  .cta-section { padding: 56px 0; }
}

/* ── SERVICE PAGES ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* "Available In Your City" tags */
  .areas-box { margin-top: 24px; }
  .city-tags { gap: 6px; margin-top: 12px; display: flex; flex-wrap: wrap; }
  .city-svc-tag {
    font-size: 10px;
    padding: 7px 11px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
  /* BA grid (before/after) */
  .ba-grid { grid-template-columns: 1fr; }
  .ba-cols { grid-template-columns: 1fr; }
}

/* ── FORMS ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* prevents iOS auto-zoom */
    padding: 14px;
    border-radius: 8px;
  }
  .appt-grid   { grid-template-columns: 1fr; gap: 14px; }
  .appt-type   { padding: 22px 18px; }
}

/* ── GALLERY ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}

/* ── LOCATIONS PAGE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; gap: 14px; }
  .location-card { padding: 20px 16px; }
  .location-card h3 { font-size: 18px; }
  .location-svc-links { gap: 5px; flex-wrap: wrap; }
  .location-svc-links a { font-size: 10px; padding: 5px 9px; }
}

/* ── REVIEWS ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 22px 18px; }
  .review-text { font-size: 14px; line-height: 1.6; }
  .review-author { font-size: 10px; }
}

/* ── MISC UTILITY ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .trust-bar { display: none !important; }
  .text-center-mobile { text-align: center; }
  .hide-mobile { display: none !important; }

  /* Three column layouts collapse */
  .three-col { grid-template-columns: 1fr; gap: 12px; }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr; gap: 2px; }
  .process-step { padding: 22px 18px; }
  .process-num  { font-size: 42px; }

  /* Mini grid */
  .mini-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 400px) {
  .mini-grid { grid-template-columns: 1fr; }
}

/* ── TOUCH TARGETS ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .btn      { min-height: 44px; }
  a.btn     { display: inline-flex; align-items: center; justify-content: center; }
  .svc-tag, .city-svc-tag, .city-tag, .area-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }
  .hamburger      { min-width: 44px; min-height: 44px; }
  .faq-question   { min-height: 52px; }
  .mobile-drawer a { min-height: 52px; }
  .footer-col a   { min-height: 36px; display: inline-flex; align-items: center; }
  .nav-logo       { min-height: 44px; display: flex; align-items: center; }
}

/* ── PREVENT OVERFLOW ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid, .split-grid, .features-grid,
  .why-box, .city-stats-box, .nbhd-box,
  .showroom-box, .local-tip-box,
  .svc-tag-cloud, .city-tags {
    max-width: 100%;
    overflow-x: hidden;
  }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  pre   { overflow-x: auto; }
}

/* ── SMALL PHONES (≤375px) ─────────────────────────────────────── */
@media (max-width: 375px) {
  html { font-size: 15px; }
  .container { padding: 0 14px; }
  .hero__title    { font-size: clamp(1.75rem, 9vw, 2.2rem); }
  .svc-index-card h3 { font-size: 12px; }
  .display-md     { font-size: clamp(18px, 6vw, 24px); }
  .features-grid  { grid-template-columns: 1fr; }
}

/* ── TABLET / IPAD (769–1024px) ────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .container      { padding: 0 28px; }
  .section        { padding: 72px 0; }
  .hero__content  { padding: 120px 28px 80px; }
  .hero__title    { font-size: clamp(2.4rem, 5vw, 3.2rem); }
  .svc-index-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .split-grid     { gap: 48px; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .city-grid      { grid-template-columns: repeat(3, 1fr) !important; }
  .feature-split__content { padding: 40px 32px; }
  .stats-section .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .trust-strip__inner { animation: none; }
  .hero__slide         { transition: opacity 0.3s ease !important; transform: scale(1) !important; }
  .mobile-drawer       { transition: none !important; }
  .reveal              { transition: none !important; opacity: 1 !important; transform: none !important; }
}
