:root {
  --ink: #111827;
  --body: #374151;
  --muted: #667085;
  --navy: #2F2D5E;
  --steel: #264057;
  --plum: #3F285B;
  --gold: #FCEA7A;
  --lime: #BFF275;
  --paper: #FFFFFF;
  --mist: #F7F7FB;
  --line: rgba(47, 45, 94, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, .brand-name {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 { font-size: clamp(39px, 8.4vw, 76px); }
h2 { font-size: clamp(31px, 6.2vw, 52px); }
h3, h4 { font-size: clamp(22px, 3.5vw, 28px); }
p, li, td, th, a, button, input, textarea { font-size: 16px; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container-premium {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(21, 20, 47, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand svg { width: 42px; height: 42px; flex: 0 0 auto; }

.brand-name { color: #fff; font-size: 24px; font-weight: 700; white-space: nowrap; }

.desktop-nav { display: none; }

.desktop-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 16px;
  padding: 28px 4px;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 20px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); }

.desktop-phone { display: none !important; }

.mobile-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px 18px;
  background: rgba(21, 20, 47, 0.96);
}

.mobile-panel.is-open { display: block; }

.mobile-panel a:not(.btn-primary) {
  display: block;
  color: #fff;
  padding: 12px 0;
  font-weight: 700;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  color: #111827;
  font-weight: 900;
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.48), 0 16px 36px rgba(0,0,0,0.2);
  animation: glowPulse 2.4s infinite;
  transition: transform .25s ease, filter .25s ease;
  white-space: nowrap;
}

.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); color: #111827; }

.btn-dark {
  background: var(--navy);
  color: #fff;
  animation: glowPulseDark 2.4s infinite;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 122px 0 72px;
  color: #fff;
  background-image: linear-gradient(115deg, rgba(21,20,47,.9), rgba(38,64,87,.72), rgba(63,40,91,.72)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(252,234,122,.2);
  transform: rotate(22deg);
  pointer-events: none;
}

.hero::before { top: 16%; left: -20vw; }
.hero::after { bottom: -26vw; right: -8vw; background: rgba(255,255,255,.04); backdrop-filter: blur(6px); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.hero h1, .dark-section h2, .dark-section h3, .hero .eyebrow { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
}

.hero-copy {
  color: rgba(255,255,255,.9);
  max-width: 840px;
  margin: 20px auto 0;
  font-size: 18px;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 5px;
  margin: 20px 0 14px;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
}

.review-badges img {
  width: auto;
  height: 48px;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
  padding: 6px;
}

.hero-cta-line {
  color: #fff;
  font-weight: 800;
  margin: 26px 0 14px;
  font-size: 18px;
}

.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.metric-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 38px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  color: #fff;
}

.metric strong { display: block; font-size: 26px; color: var(--gold); line-height: 1; }

.section {
  padding: 82px 0;
  position: relative;
  overflow: hidden;
}

.section.alt { background: var(--mist); }

.dark-section {
  background: radial-gradient(circle at 15% 0%, rgba(191,242,117,.14), transparent 26%), linear-gradient(135deg, var(--navy), var(--steel) 50%, var(--plum));
  color: rgba(255,255,255,.88);
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.accent-line {
  width: 86px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  margin-top: 16px;
}

.section-head.center .accent-line { margin-left: auto; margin-right: auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.two-col .text-col { order: 2; }
.two-col .image-col { order: 1; }

.image-panel {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  box-shadow: 0 26px 80px rgba(38,64,87,.16);
}

.image-panel img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

.glass-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(20px);
  padding: 24px;
  color: #fff;
}

.card-white {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  color: var(--body);
  box-shadow: 0 18px 55px rgba(47,45,94,.08);
}

.card-white h3, .card-white h4 { color: var(--ink); }

.card-white h3::after, .card-white h4::after, .glass-card h3::after, .glass-card h4::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
}

.reviews-shell { position: relative; }

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 24px;
  scrollbar-width: thin;
}

.review-card {
  scroll-snap-align: start;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark { color: var(--plum); font-size: 44px; line-height: 1; }

.slider-controls { display: flex; gap: 10px; justify-content: center; margin-top: 10px; }

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  border-left: 4px solid var(--gold);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(47,45,94,.12); }

.service-icon, .mini-icon {
  width: 54px;
  height: 54px;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-card table, .process-table, .service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border: 1px solid #E4E7EC;
}

th { background: #F2F4F7; color: var(--ink); font-weight: 900; }

.compact-list { margin: 12px 0 0; padding-left: 20px; }

.why-grid, .faq-grid, .payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.process-wrap { overflow-x: auto; }

.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.zip-list li {
  padding: 8px 13px;
  background: rgba(252,234,122,.16);
  border: 1px solid rgba(252,234,122,.4);
  color: #fff;
  font-weight: 900;
}

.cta-band {
  padding: 40px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  display: grid;
  gap: 22px;
  align-items: center;
}

.site-footer {
  background: #111827;
  color: rgba(255,255,255,.78);
  padding: 54px 0 24px;
  font-size: 14px;
}

.site-footer p, .site-footer a, .site-footer li { font-size: 14px; }
.site-footer h3 { color: #fff; font-size: 22px; }
.site-footer .brand-name { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-links { display: grid; gap: 8px; }

.footer-links a { color: rgba(255,255,255,.86); }
.footer-links a:hover { color: var(--gold); }

.site-footer a[href^="tel:"] {
  color: #fff;
  font-weight: 900;
}

.disclaimer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none !important;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(17,24,39,.96);
  transform: translateY(105%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-sticky-call.is-visible {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
  white-space: nowrap;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45), 0 16px 36px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0), 0 18px 42px rgba(0,0,0,0.24); }
}

@keyframes glowPulseDark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,45,94,0.28), 0 16px 36px rgba(47,45,94,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(47,45,94,0), 0 18px 42px rgba(47,45,94,0.22); }
}

@media (min-width: 640px) {
  .metric-strip { grid-template-columns: repeat(3, 1fr); }
  .services-grid, .why-grid, .faq-grid, .payment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .mobile-toggle, .mobile-panel { display: none !important; }
  .desktop-nav { display: flex; align-items: center; gap: 18px; }
  .desktop-phone { display: inline-flex !important; }
  .mobile-sticky-call, .mobile-sticky-call.is-visible { display: none !important; }
  .two-col { grid-template-columns: 7fr 3fr; gap: 46px; }
  .two-col.reverse { grid-template-columns: 3fr 7fr; }
  .two-col .text-col, .two-col .image-col { order: initial; }
  .reviews-track { grid-auto-columns: calc((100% - 36px) / 3); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .header-inner { flex-wrap: wrap; padding: 12px 0; gap: 10px 16px; }
  .desktop-nav { order: 3; width: 100%; justify-content: space-between; gap: 8px; }
  .desktop-nav a { padding: 8px 0 12px; }
  .desktop-nav a::after { bottom: 6px; left: 0; right: 0; }
  .hero { padding-top: 156px; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  body { padding-bottom: 74px; }
  .header-inner { min-height: 66px; }
  .brand-name { font-size: 24px; max-width: 245px; white-space: normal; line-height: 1.05; }
  .hero { padding-top: 104px; }
  h1 { font-size: max(39px, 13vw); }
  h2 { font-size: max(31px, 10vw); }
  .section { padding: 64px 0; }
  .review-badges { gap: 8px; }
  .review-badges img { height: 40px; }
  .cta-band { padding: 28px 20px; }
}
