html {
  scroll-behavior: smooth;
}

body {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 320px;
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

a, button {
  transition: color .24s ease, background-color .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.site-shell {
  background: radial-gradient(circle at 15% 0%, rgba(153, 114, 194, .18), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f5f7fb 44%, #ffffff 100%);
}

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

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

.mobile-only {
  display: flex !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(7, 20, 47, .9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand:hover {
  color: #ffffff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 12px 32px rgba(171, 23, 15, .3);
}

.desktop-nav {
  align-items: center;
  gap: 22px;
}

.desktop-nav a, .mobile-panel a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.desktop-nav a:hover, .mobile-panel a:hover {
  color: #dbe7ff;
}

.header-phone {
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.hamburger {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger span::before {
  top: -7px;
}

.hamburger span::after {
  top: 7px;
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px 20px 28px;
  background: rgba(7, 20, 47, .98);
  border-top: 1px solid rgba(255, 255, 255, .14);
  z-index: 59;
}

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

.btn-primary, .btn-outline, .btn-dark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .38), 0 18px 42px rgba(171, 23, 15, .34);
  animation: haloPulse 2.25s ease-in-out infinite;
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .08), 0 24px 54px rgba(171, 23, 15, .42);
}

.phone-on-light {
  color: #111827 !important;
  font-weight: 900;
}

.btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.btn-outline:hover {
  color: #07142f;
  background: #ffffff;
}

.btn-dark {
  color: #ffffff;
  background: #07142f;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 118px 0 74px;
  color: #ffffff;
  background-image: linear-gradient(110deg, rgba(4, 12, 32, .86), rgba(16, 43, 106, .62), rgba(117, 34, 38, .48)), url("../images/hero-kitchen.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 47, .12), rgba(7, 20, 47, .76));
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(171, 23, 15, .92);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-title {
  color: #ffffff;
  font-size: 39px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero-stars {
  margin-top: 18px;
  color: #ffd36a;
  font-size: 28px;
  letter-spacing: .18em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .42);
}

.review-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px auto 0;
}

.review-icons img {
  width: auto;
  height: 48px;
  object-fit: contain;
  max-width: 94px;
  background: rgba(255, 255, 255, .96);
  padding: 6px 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.hero-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
}

.hero-cta-note {
  margin-top: 26px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.glass-strip {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

.glass-metric strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
}

.section-block {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
}

.section-dark {
  background: radial-gradient(circle at 85% 15%, rgba(153, 114, 194, .24), transparent 30%), linear-gradient(135deg, #07142f, #102b6a 58%, #1b102f);
  color: #f9fafb;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 11px;
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-title {
  position: relative;
  margin-bottom: 24px;
  color: #111827;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.035em;
}

.section-dark .section-title, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}

.section-title::after, .lined-heading::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--steel));
}

.center-title .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.lead-text, p, li, td, th {
  font-size: 16px;
  line-height: 1.75;
}

.lead-text {
  color: #374151;
}

.section-dark .lead-text, .section-dark p, .section-dark li {
  color: #f3f4f6;
}

.split-70-30 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.premium-image-wrap {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(16, 43, 106, .16);
  background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(114, 143, 192, .16));
  box-shadow: 0 30px 70px rgba(16, 43, 106, .14);
}

.premium-image-wrap::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(171, 23, 15, .3);
  z-index: 0;
}

.premium-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

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

.card-premium {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(16, 43, 106, .13);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 58px rgba(16, 43, 106, .1);
  transform: translateY(0);
}

.card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 72px rgba(16, 43, 106, .16);
}

.card-premium h3, .card-premium h4 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.card-premium p, .card-premium li {
  color: #374151;
}

.icon-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(16, 43, 106, .12);
  background: #ffffff;
  color: #111827;
}

.line-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #102b6a;
}

.icon-tile strong {
  display: block;
  color: #111827;
  font-size: 16px;
}

.icon-tile span {
  color: #4b5563;
  font-size: 14px;
}

.metal-panel {
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(219, 231, 255, .74));
  border-left: 5px solid var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 24px 60px rgba(16, 43, 106, .12);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(16, 43, 106, .12);
}

.comparison-table th, .comparison-table td {
  padding: 17px;
  border: 1px solid #d8deeb;
  color: #111827;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #07142f;
  color: #ffffff;
  font-weight: 900;
}

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: ;
  color: #374151;
  box-shadow: 0 28px 62px rgba(0, 0, 0, .18);
}

.review-card h3 {
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.review-stars {
  color: #ab170f;
  font-size: 18px;
  letter-spacing: .1em;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  font-size: 24px;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.pill-list li {
  padding: 8px 11px;
  border: 1px solid rgba(16, 43, 106, .15);
  background: #ffffff;
  color: #111827;
  font-weight: 800;
}

.cta-band {
  position: relative;
  padding: 52px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark) 48%, var(--secondary));
  color: #ffffff;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .22);
  transform: rotate(24deg);
}

.cta-band h2, .cta-band p {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.cta-band h2 {
  font-size: 31px;
  line-height: 1.14;
  font-weight: 900;
}

.site-footer {
  padding: 54px 0 96px;
  background: #050d20;
  color: #f9fafb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.site-footer a, .site-footer p, .site-footer li {
  color: #f9fafb;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer h3, .site-footer h4 {
  color: #ffffff;
  font-size: 22px;
}

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

.disclaimer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #d1d5db;
  font-size: 14px;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 10px calc(14px + env(safe-area-inset-bottom));
  background: #07142f;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 -14px 36px rgba(0, 0, 0, .24);
}

.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes haloPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .34), 0 18px 42px rgba(171, 23, 15, .34); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, .04), 0 22px 54px rgba(171, 23, 15, .44); }
}

@media (min-width: 640px) {
  .hero-title { font-size: 52px; }
  .glass-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .issue-grid, .why-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .desktop-only { display: flex !important; }
  .mobile-only, .hamburger, .mobile-panel, .sticky-call { display: none !important; }
  .hero-section { padding-top: 140px; }
  .hero-title { font-size: 64px; }
  .section-title, .cta-band h2 { font-size: 42px; }
  .split-70-30 { grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr); }
  .split-30-70 { grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr); }
  .reviews-track { grid-auto-columns: calc((100% - 36px) / 3); }
  .footer-grid { grid-template-columns: 1.4fr .9fr .9fr; }
  .site-footer { padding-bottom: 54px; }
}

@media (min-width: 1024px) {
  .service-icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .issue-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .container-wide { width: min(100% - 28px, 560px); }
  .brand { font-size: 24px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-copy { font-size: 16px; }
  .section-block { padding: 58px 0; }
  .hero-actions .btn-primary, .hero-actions .btn-outline, .mobile-panel .btn-primary { width: 100%; }
  .review-icons img { height: 42px; max-width: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
