/* ==========================================================================
   Window Warriors & Home Services — Houston, TX
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Rubik:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors (from windowwarriorservices.com) */
  --navy-900: #141d33;
  --navy-800: #1c3454;
  --navy-700: #232e56;
  --navy-600: #2c3f6b;
  --gold-500: #fdd65e;
  --gold-600: #f0c23a;
  --gold-700: #d9a824;
  --cream-50: #fffaf1;
  --white: #ffffff;
  --ink: #172335;
  --muted: #5c6478;
  --muted-light: #8790a3;
  --border: #e7e2d6;
  --success: #2f9e5c;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Rubik', sans-serif;

  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(20, 29, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 29, 51, 0.10);
  --shadow-lg: 0 20px 48px rgba(20, 29, 51, 0.16);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.on-dark .eyebrow { color: var(--gold-500); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-top: 14px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; color: var(--muted); line-height: 1.65; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(20,29,51,0.08);
  padding: 12px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand .logo-dark { display: none; }
.site-header.is-scrolled .brand .logo-light { display: none; }
.site-header.is-scrolled .brand .logo-dark { display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.site-header:not(.is-scrolled) .main-nav a { color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.main-nav a:hover { background: rgba(28,52,84,0.08); }
.site-header:not(.is-scrolled) .main-nav a:hover { background: rgba(255,255,255,0.16); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { width: 13px; height: 13px; transition: transform 0.2s var(--ease); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s var(--ease);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; color: var(--navy-800) !important; text-shadow: none !important; padding: 10px 14px; font-size: 0.9rem; border-radius: var(--radius-sm); }
.dropdown-menu a:hover { background: var(--cream-50); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy-800);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 20px 11px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.call-pill svg { width: 17px; height: 17px; color: var(--gold-500); }
.call-pill:hover { background: var(--navy-700); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; display: block; width: 22px; height: 2px; background: currentColor;
  position: relative; transition: all 0.25s var(--ease);
}
.nav-toggle::before { position: absolute; transform: translateY(-7px); }
.nav-toggle::after { position: absolute; transform: translateY(7px); }
.site-header:not(.is-scrolled) .nav-toggle { color: var(--white); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open::before { transform: rotate(45deg); }
.nav-toggle.is-open::after { transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 80px;
  color: var(--white);
  background-color: var(--navy-900);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,29,51,0.55) 0%, rgba(20,29,51,0.35) 30%, rgba(20,29,51,0.55) 65%, rgba(20,29,51,0.92) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-badge .stars { display: inline-flex; gap: 1px; }
.hero-badge .stars svg { width: 14px; height: 14px; color: var(--gold-500); }
.hero-badge svg.g-icon { width: 16px; height: 16px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero-sub {
  margin-top: 22px;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 46ch;
  color: rgba(255,255,255,0.86);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.hero-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.92);
}

/* ---------- Hero instant quote (split layout) ---------- */
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-quote-card {
  background: rgba(20, 29, 51, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}
.hero-quote-head { text-align: center; margin-bottom: 24px; }
.hero-quote-kicker {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.hero-quote-head h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 6px; }
.hero-quote-head h2 em { font-style: normal; color: var(--gold-500); }
.hero-quote-card .quote-form { gap: 14px; }
.hero-quote-card .form-note { text-align: center; }

.scroll-cue {
  position: absolute;
  bottom: 28px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.4); }

/* ---------- Subpage hero ---------- */
.hero-sm { min-height: unset; padding-top: 150px; padding-bottom: 70px; align-items: flex-end; }
.hero-sm h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: 22ch; }
.hero-sm .hero-sub { margin-top: 16px; }
.hero-sm .scroll-cue { display: none; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--cream-50); padding: 16px 0; border-bottom: 1px solid rgba(28,52,84,0.08); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: 0.85rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s var(--ease); }
.breadcrumbs a:hover { color: var(--navy-800); }
.breadcrumbs .crumb-current { color: var(--navy-800); font-weight: 600; }
.breadcrumbs .crumb-sep { color: var(--muted-light); }

/* ---------- Nav active state ---------- */
.main-nav a.active { color: var(--gold-500) !important; }
.site-header.is-scrolled .main-nav a.active { color: var(--gold-700) !important; }

/* ---------- Plans (membership) ---------- */
.plans { padding: 100px 0; background: var(--cream-50); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--navy-900);
  font-family: var(--font-head); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.plan-name {
  font-family: var(--font-head); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-700);
}
.plan-card.featured .plan-name { color: var(--gold-500); }
.plan-price {
  margin-top: 14px;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--navy-800);
  display: flex; align-items: baseline; gap: 8px;
}
.plan-card.featured .plan-price { color: var(--white); }
.plan-price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.65); }
.plan-sub { margin-top: 2px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-light); }
.plan-card.featured .plan-sub { color: rgba(255,255,255,0.5); }
.plan-perks { margin-top: 26px; display: grid; gap: 13px; flex: 1; }
.plan-perks li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: var(--navy-800); line-height: 1.4; }
.plan-card.featured .plan-perks li { color: rgba(255,255,255,0.9); }
.plan-perks svg { width: 16px; height: 16px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.plan-card.featured .plan-perks svg { color: var(--gold-500); }
.plan-perks .perk-no svg { color: #e0524f; }
.plan-card .btn { margin-top: 30px; }

.plans-carousel { position: relative; }
.plans-arrow { display: none; }
.plans-swipe-hint { display: none; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy-800);
  color: var(--white);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat { text-align: center; padding: 0 12px; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: rgba(255,255,255,0.14);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--gold-500);
  display: flex; align-items: baseline; justify-content: center; gap: 3px;
}
.stat-label { margin-top: 6px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ---------- Services ---------- */
.services { padding: 120px 0 100px; background: var(--cream-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--navy-700);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-icon-only .service-media {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}
.service-icon-only .service-media svg { width: 64px; height: 64px; color: var(--gold-500); opacity: 0.9; }
.service-badge {
  position: absolute; top: 14px; left: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.service-badge svg { width: 20px; height: 20px; color: var(--navy-900); }
.service-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.28rem; }
.service-body p { margin-top: 10px; color: var(--muted); font-size: 0.96rem; line-height: 1.6; flex: 1; }
.service-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  color: var(--navy-800);
}
.service-link svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Process ---------- */
.process { padding: 100px 0; background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px);
}
.process-step { position: relative; text-align: center; padding: 0 10px; }
.process-num {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--white);
}
.process-step h3 { font-size: 1.18rem; }
.process-step p { margin-top: 10px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 32ch; margin-inline: auto; }

/* ---------- About ---------- */
.about { padding: 110px 0; background: var(--cream-50); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-media-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media-float {
  position: absolute;
  bottom: -34px; left: -40px;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  aspect-ratio: 4/3;
}
.about-media-float img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p.lead { margin-top: 16px; font-size: 1.12rem; color: var(--navy-800); line-height: 1.65; font-weight: 500; }
.about-copy p { margin-top: 16px; color: var(--muted); line-height: 1.7; }
.about-points { margin-top: 30px; display: grid; gap: 14px; }
.about-point { display: flex; align-items: flex-start; gap: 12px; }
.about-point .tick {
  width: 26px; height: 26px; border-radius: 50%; background: var(--navy-800);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.about-point .tick svg { width: 13px; height: 13px; color: var(--gold-500); }
.about-point span { font-size: 0.98rem; color: var(--navy-800); font-weight: 500; }

/* ---------- Service Areas ---------- */
.areas { padding: 100px 0; background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }
.areas::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(253,214,94,0.10), transparent 55%);
}
.areas .container { position: relative; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.areas-list { display: grid; gap: 14px; margin-top: 30px; }
.area-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.area-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(253,214,94,0.4); }
.area-item svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; }
.area-item div strong { font-family: var(--font-head); font-size: 1.02rem; display: block; }
.area-item div span { font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.area-note { margin-top: 22px; font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.map-illustration { display: flex; align-items: center; justify-content: center; }
.map-illustration svg { width: 100%; max-width: 420px; height: auto; }

/* ---------- Gallery ---------- */
.gallery { padding: 110px 0 100px; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,29,51,0.55) 100%);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews { padding: 100px 0; background: var(--cream-50); }
.reviews-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.reviews-score { text-align: center; }
.reviews-score .num { font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; color: var(--navy-800); line-height: 1; }
.reviews-score .stars { display: flex; gap: 3px; justify-content: center; margin-top: 10px; }
.reviews-score .stars svg { width: 20px; height: 20px; color: var(--gold-500); }
.reviews-score .count { margin-top: 8px; font-size: 0.88rem; color: var(--muted); }
.reviews-divider { width: 1px; align-self: stretch; background: var(--border); }
.reviews-text h3 { font-size: 1.5rem; }
.reviews-text p { margin-top: 12px; color: var(--muted); line-height: 1.65; max-width: 46ch; }

/* ---------- Review wall ---------- */
.review-stat-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}
.review-stat-line .stat-sep { width: 1px; height: 18px; background: var(--border); }
.review-stat-line .stat-rating { display: flex; align-items: center; gap: 6px; color: var(--navy-800); font-weight: 600; }
.review-stat-line .stat-rating svg { width: 16px; height: 16px; color: var(--gold-500); }
.review-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.review-card .stars { display: flex; gap: 2px; }
.review-card .stars svg { width: 16px; height: 16px; color: var(--gold-500); }
.review-card .quote-mark { width: 26px; height: 26px; color: var(--border); flex-shrink: 0; }
.review-card p { margin-top: 16px; color: var(--ink); line-height: 1.65; font-size: 0.96rem; flex-grow: 1; }
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.03em; color: var(--navy-800); text-transform: uppercase; }
.review-footer svg.google-g { width: 18px; height: 18px; margin-left: auto; flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0 120px; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-50);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-800);
}
.faq-q .plus {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--navy-800); transition: transform 0.3s var(--ease);
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-q .plus { background: var(--gold-500); border-color: var(--gold-500); }
.faq-item.is-open .faq-q .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); line-height: 1.7; font-size: 0.97rem; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background-color: var(--navy-900);
  color: var(--white);
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,29,51,0.75), rgba(20,29,51,0.94));
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin: 16px auto 0; }
.cta p { margin: 18px auto 0; max-width: 50ch; color: rgba(255,255,255,0.82); font-size: 1.08rem; line-height: 1.6; }
.cta .hero-actions { justify-content: center; margin-top: 36px; }

/* ---------- Quote form ---------- */
.quote { padding: 110px 0; background: var(--white); }
.quote-panel {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.quote-panel::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,214,94,0.18), transparent 70%);
}
.quote-info h2 { color: var(--white); font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.quote-info p { margin-top: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; }
.quote-info .call-pill { margin-top: 26px; background: var(--gold-500); color: var(--navy-900) !important; }
.quote-info .call-pill svg { color: var(--navy-900); }
.quote-perks { margin-top: 30px; display: grid; gap: 12px; }
.quote-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: rgba(255,255,255,0.85); }
.quote-perks svg { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; }

.quote-form { display: grid; gap: 14px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--white);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: rgba(255,255,255,0.12);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.form-success {
  display: none;
  align-items: center; gap: 10px;
  background: rgba(47,158,92,0.16);
  border: 1px solid rgba(47,158,92,0.4);
  color: #b6f0cd;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; line-height: 1.7; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-head); color: var(--white); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; line-height: 1.5; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-500); }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy-800);
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-call-bar a { color: var(--white); font-family: var(--font-head); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.mobile-call-bar svg { width: 18px; height: 18px; color: var(--gold-500); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,29,51,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 20px; height: 20px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-group].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-group].is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .plans-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    max-width: 100%;
    margin: 0;
    padding: 22px 6vw 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .plans-grid::-webkit-scrollbar { display: none; }
  .plan-card { scroll-snap-align: center; flex: 0 0 82%; min-width: 240px; }
  .plans-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--navy-800);
    z-index: 2;
  }
  .plans-arrow svg { width: 18px; height: 18px; }
  .plans-arrow-prev { left: -4px; }
  .plans-arrow-next { right: -4px; }
  .plans-swipe-hint {
    display: block;
    text-align: center;
    margin-top: 2px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted-light);
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 90px; }
  .about-media-float { width: 50%; }
  .areas-grid { grid-template-columns: 1fr; }
  .map-illustration { order: -1; max-width: 280px; margin: 0 auto; }
  .quote-panel { grid-template-columns: 1fr; padding: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-quote-card { max-width: 480px; margin: 0 auto; width: 100%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-card { grid-template-columns: 1fr; text-align: center; gap: 30px; padding: 44px; }
  .reviews-divider { width: 100%; height: 1px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-actions .call-pill span { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { gap: 8px; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 62px; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 100px 26px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a, .site-header:not(.is-scrolled) .main-nav a {
    color: var(--white) !important;
    text-shadow: none;
    padding: 15px 6px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }
  .main-nav a:hover, .site-header:not(.is-scrolled) .main-nav a:hover { background: transparent; color: var(--gold-500) !important; }
  .nav-dropdown { display: flex; flex-direction: column; }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    margin-top: 4px;
  }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.75) !important; padding: 12px 16px; border-bottom: none !important; }

  .nav-scrim {
    position: fixed; inset: 0; background: rgba(20,29,51,0.5);
    z-index: 98; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease);
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }

  .hero { padding-top: 100px; padding-bottom: 60px; align-items: flex-end; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-split .hero-grid { gap: 22px; }
  .hero-split .hero-badge { margin-bottom: 14px; }
  .hero-split .hero-sub { margin-top: 12px; }
  .hero-split .hero-tags { margin-top: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .stat:nth-child(3)::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 90px 0 70px; }
  .process-grid { grid-template-columns: 1fr; gap: 46px; }
  .process-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }
  .review-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-panel { padding: 32px 24px; }
  .about-media-float { left: 0; bottom: -24px; width: 55%; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .reviews-card, .quote-panel { padding: 30px 22px; }
  .hero-quote-card { padding: 28px 22px; }
  .hero-badge { font-size: 0.78rem; }
}
