:root {
  --burgundy: #561d29;
  --blue: #94b1ed;
  --ink: #111827;
  --muted: #5f6472;
  --cream: #fbf8f5;
  --soft: #f3f0ed;
  --line: rgba(86, 29, 41, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

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

h1 { font-size: clamp(39px, 7vw, 76px); }
h2 { font-size: clamp(31px, 5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
h4 { font-size: 22px; }
p, li, td, th, a, button, input, textarea { font-size: 16px; }

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(251, 248, 245, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: #fff;
  font-family: ui-serif, Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.brand-name { font-size: 24px; font-weight: 700; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: #202431;
  font-weight: 650;
}

.desktop-nav a { font-size: 16px; }
.desktop-nav a:hover { color: var(--burgundy); }

.desktop-header-phone {
  display: none !important;
  white-space: nowrap;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--burgundy);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(5px); }
.menu-toggle.active span { transform: rotate(45deg); }
.menu-toggle.active span::before { opacity: 0; }
.menu-toggle.active span::after { transform: translateY(-2px) rotate(90deg); }

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 18px 16px 24px;
}

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

.mobile-panel a:not(.btn-primary) {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(86, 29, 41, 0.1);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px 0 70px;
  background: linear-gradient(rgba(16, 15, 18, 0.65), rgba(16, 15, 18, 0.72)), url("../images/hero-kitchen.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

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

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

.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.92); font-size: clamp(18px, 2.2vw, 22px); max-width: 820px; margin: 22px auto 0; }

.stars {
  color: var(--blue);
  font-size: 28px;
  letter-spacing: 0.12em;
  margin: 18px 0 12px;
  text-shadow: 0 0 20px rgba(148, 177, 237, 0.45);
}

.trust-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px auto 28px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  padding: 6px;
}

.eyebrow, .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy);
  background: rgba(148, 177, 237, 0.2);
  border-left: 3px solid var(--blue);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow { background: rgba(255,255,255,0.14); color: #fff; border-left-color: var(--blue); }

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--burgundy);
  background: var(--burgundy);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.42);
  animation: softPulse 2.2s infinite;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary:hover { transform: translateY(-2px); background: #3e121c; border-color: #3e121c; }
.hero .btn-primary { border-color: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.48); }

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.36); }
  70% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.section { padding: 76px 0; }
.section-alt { background: #fff; }
.section-dark { background: var(--burgundy); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.88); }
.section-dark .section-badge { background: rgba(255,255,255,0.12); color: #fff; }

.section-title { max-width: 780px; margin-bottom: 34px; }
.section-title.center { margin-inline: auto; text-align: center; }
.section-title h2 { margin-top: 14px; }
.section-title p { color: var(--muted); margin-top: 14px; }
.section-dark .section-title p { color: rgba(255,255,255,0.86); }

.accent-line::after {
  content: "";
  width: 76px;
  height: 2px;
  display: block;
  margin-top: 15px;
  background: var(--blue);
}

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

.intro-card {
  display: grid;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.intro-card p { color: #343946; }
.photo-frame { border: 1px solid var(--line); padding: 10px; background: #fff; }
.photo-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.steps-grid { display: grid; gap: 18px; counter-reset: steps; }
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
}
.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  color: var(--burgundy);
  font-family: ui-serif, Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}
.step-card p { color: #39404d; }

.service-grid { display: grid; gap: 18px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(86, 29, 41, 0.09); }
.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(86,29,41,0.16);
  background: linear-gradient(135deg, rgba(148,177,237,0.24), rgba(255,255,255,0.8));
  color: var(--burgundy);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: #555b67; }

.split-row {
  display: grid;
  gap: 28px;
  align-items: center;
}
.split-row + .split-row { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.split-copy { order: 2; }
.split-media { order: 1; }

.issue-grid { display: grid; gap: 18px; }
.issue-card { padding: 24px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.issue-card p { color: rgba(255,255,255,0.88); }

.coverage-grid { display: grid; gap: 22px; }
.list-panel { border: 1px solid var(--line); background: #fff; padding: 26px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill { border: 1px solid rgba(86,29,41,0.16); padding: 9px 12px; background: var(--cream); color: #202431; font-weight: 700; }

.payment-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.payment-table th, .payment-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); color: #232936; }
.payment-table th { background: rgba(148,177,237,0.16); color: var(--ink); }

.about-points { display: grid; gap: 18px; }
.about-point { border-left: 2px solid var(--blue); padding: 18px 20px; background: #fff; }
.about-point strong { color: var(--ink); }

.reviews-shell { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform 420ms ease; }
.review-slide { min-width: 100%; padding: 0 8px; }
.review-card { height: 100%; background: #fff; border: 1px solid var(--line); padding: 24px; }
.review-card .stars { font-size: 18px; margin: 0 0 12px; letter-spacing: 0.05em; }
.review-card p { color: #39404d; }
.review-card strong { display: block; margin-top: 18px; color: var(--ink); }
.reviews-controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.reviews-controls button { width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; color: var(--burgundy); font-size: 22px; }

.faq-grid { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); background: #fff; padding: 22px; }
.faq-item h3 { font-size: 22px; margin-bottom: 8px; }
.faq-item p { color: #4d5461; }

.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--burgundy), #2d0c14);
  color: #fff;
  padding: 46px 26px;
  text-align: center;
}
.cta-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(148,177,237,0.32), transparent 34%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,0.9); max-width: 760px; margin: 16px auto 24px; }

.site-footer { background: #151019; color: rgba(255,255,255,0.78); padding: 54px 0 94px; }
.footer-grid { display: grid; gap: 28px; }
.site-footer .brand-name { color: #fff; }
.site-footer a { color: #fff; }
.site-footer p, .site-footer li { font-size: 14px; }
.footer-links { display: grid; gap: 8px; }
.disclaimer { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 30px; padding-top: 22px; }

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none !important;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 12px calc(env(safe-area-inset-bottom) + 0px);
  background: var(--burgundy);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call.visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(22px);
  transition: opacity 760ms ease, filter 760ms ease, transform 760ms ease;
}
.reveal.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }

@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 12vw, 53px); }
  h2 { font-size: clamp(31px, 9vw, 36px); }
  .brand-name { font-size: 24px; }
  .mobile-sticky-call { display: flex !important; }
  .mobile-sticky-call:not(.visible) { pointer-events: none; }
  .hero { min-height: 92svh; }
  .section { padding: 58px 0; }
}

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-grid, .about-points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .desktop-header-phone { display: inline-flex !important; }
  .menu-toggle, .mobile-panel { display: none !important; }
  .mobile-sticky-call { display: none !important; }
  .intro-card { grid-template-columns: 7fr 3fr; }
  .split-row { grid-template-columns: 7fr 3fr; }
  .split-copy { order: 1; }
  .split-media { order: 2; }
  .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .issue-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .review-slide { min-width: 33.333333%; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-content { padding-top: 30px; }
}

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