:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --indigo: #363c8d;
  --indigo-dark: #171a44;
  --indigo-mid: #6a71c6;
  --gold: #f7b731;
  --ink: #111827;
  --body: #374151;
  --muted: #6b7280;
  --cream: #fbfaf7;
  --soft: #f6f7ff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

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

h1, h2, h3, h4, .brand-name {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.08;
  font-weight: 700;
}

h1 { font-size: clamp(39px, 9vw, 72px); letter-spacing: -0.04em; }
h2 { font-size: clamp(31px, 7vw, 48px); letter-spacing: -0.035em; }
h3, h4 { font-size: 22px; }
p, li, a, button { font-size: 16px; }

@media (max-width: 767px) {
  h1 { font-size: 39px; }
  h2 { font-size: 31px; }
}

.site-shell { overflow: hidden; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(54, 60, 141, 0.14);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: var(--indigo);
  color: #ffffff;
}

.brand-mark svg { width: 27px; height: 27px; }
.brand-name { font-size: 24px; color: var(--ink); white-space: nowrap; }

.desktop-nav {
  display: none !important;
  align-items: center;
  gap: 24px;
}

.desktop-nav a, .mobile-panel a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.desktop-nav a:hover, .mobile-panel a:hover { color: var(--indigo); }

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

.hamburger {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54, 60, 141, 0.25);
  background: #ffffff;
  color: var(--indigo);
}

.hamburger-lines { display: grid; gap: 5px; }
.hamburger-lines span { display: block; width: 24px; height: 2px; background: currentColor; }

.mobile-panel {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid rgba(54, 60, 141, 0.18);
  box-shadow: 0 24px 60px rgba(23, 26, 68, 0.16);
}

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

.mobile-panel-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .header-phone-desktop { display: inline-flex !important; }
  .hamburger, .mobile-panel { display: none !important; }
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  background: var(--indigo);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(54, 60, 141, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0.7;
  animation: pulseGlow 1.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(54, 60, 141, 0.34);
}

.btn-light { background: #ffffff; color: var(--ink) !important; }
.btn-light::after { border-color: rgba(255, 255, 255, 0.9); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  color: #ffffff;
  isolation: isolate;
  background-image: linear-gradient(180deg, rgba(15, 18, 55, 0.78), rgba(15, 18, 55, 0.86)), url("../images/hero-kitchen.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  z-index: -1;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px 0 86px;
  text-align: center;
}

.hero h1 { color: #ffffff; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28); }
.hero .lead { max-width: 850px; margin: 24px auto 0; color: #f9fafb; font-size: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 900; font-size: 13px; }
.eyebrow::before, .eyebrow::after { content: ""; width: 30px; height: 1px; background: currentColor; }
.stars { color: var(--gold); font-size: 27px; letter-spacing: 5px; margin: 20px 0 12px; }

.review-icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin: 16px auto 28px;
}

.review-icon-row img {
  width: auto;
  height: 48px;
  max-width: 102px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 8px;
}

.hero-cta-copy { color: #ffffff; font-size: 18px; font-weight: 800; margin: 28px 0 20px; }

.hero-trust {
  margin-top: 34px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #ffffff;
}

.hero-trust span { border: 1px solid rgba(255, 255, 255, 0.22); padding: 14px 10px; background: rgba(255, 255, 255, 0.08); font-weight: 700; }

section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--indigo-dark); color: #f9fafb; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff; }
.section-dark p, .section-dark li { color: #eef2ff; }
.section-kicker { display: inline-block; margin-bottom: 16px; padding: 8px 12px; background: var(--gold); color: #111827; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; }
.heading-rule { width: 76px; height: 4px; background: var(--indigo-mid); margin: 18px 0 26px; }
.text-center .heading-rule, .heading-rule.center { margin-left: auto; margin-right: auto; }

.intro-grid, .split-row {
  display: grid;
  gap: 30px;
  align-items: center;
}

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr); }
  .split-row { grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr); }
  .split-row.reverse { grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr); }
  .split-row.reverse .split-image { order: -1; }
}

.photo-frame {
  position: relative;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 24px 54px rgba(23, 26, 68, 0.17);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 24px -12px -12px 24px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.photo-frame img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; display: block; }
.split-image img { min-height: 250px; }

.reviews-shell { position: relative; }
.review-track { overflow: hidden; }
.review-slides { display: flex; transition: transform 360ms ease; }
.review-slide { flex: 0 0 100%; padding: 8px; }

@media (min-width: 900px) { .review-slide { flex-basis: 33.3333%; } }

.review-card {
  height: 100%;
  background: #ffffff;
  color: var(--body);
  border-top: 5px solid var(--indigo);
  padding: 28px;
  box-shadow: 0 16px 44px rgba(23, 26, 68, 0.11);
}

.review-card strong { display: block; color: var(--ink); font-family: var(--font-heading); font-size: 22px; margin-bottom: 12px; }
.review-controls { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.review-btn { width: 46px; height: 46px; border: 1px solid var(--indigo); color: var(--indigo); background: #ffffff; font-weight: 900; }
.review-btn:hover { background: var(--indigo); color: #ffffff; }

.benefit-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .benefit-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.benefit-card { background: #ffffff; color: var(--body); padding: 24px; border: 1px solid rgba(54, 60, 141, 0.14); box-shadow: 0 12px 36px rgba(23, 26, 68, 0.08); }
.benefit-card h3 { margin-bottom: 14px; }
.benefit-star { color: var(--gold); font-size: 24px; margin-bottom: 12px; }

.service-grid { display: grid; gap: 22px; }
@media (min-width: 900px) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.service-card { background: #ffffff; padding: 30px; border-left: 6px solid var(--indigo-mid); box-shadow: 0 16px 40px rgba(23, 26, 68, 0.09); }
.service-icon { width: 58px; height: 58px; margin-bottom: 16px; color: var(--indigo); }
.service-card ul, .faq-list { padding-left: 0; list-style: none; display: grid; gap: 12px; }
.service-card li, .faq-item { padding-left: 28px; position: relative; }
.service-card li::before, .faq-item::before { content: "★"; position: absolute; left: 0; top: 0; color: var(--gold); }

.cta-band { background: linear-gradient(135deg, var(--indigo), var(--indigo-dark)); color: #ffffff; padding: 52px 0; }
.cta-inner { display: grid; gap: 22px; align-items: center; }
@media (min-width: 768px) { .cta-inner { grid-template-columns: 1fr auto; } }
.cta-band h2, .cta-band p { color: #ffffff; margin: 0; }

.faq-card { background: #ffffff; color: var(--body); padding: 28px; border: 1px solid rgba(54, 60, 141, 0.14); }
.faq-card strong { color: var(--ink); }

.footer { background: #0f1237; color: #f9fafb; padding: 54px 0 34px; font-size: 14px; }
.footer p, .footer a, .footer li { color: #f9fafb; font-size: 14px; }
.footer h3 { color: #ffffff; }
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer .brand-name { color: #ffffff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.disclaimer { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.18); color: #e5e7eb; }

.mobile-sticky-call {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 18, 55, 0.97);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-sticky-call.is-visible { transform: translateY(0); opacity: 1; }
.mobile-sticky-call a { width: 100%; min-height: 52px; font-size: 16px; }

@media (max-width: 767px) {
  .mobile-sticky-call { display: block !important; }
  body.has-sticky-space { padding-bottom: 78px; }
  .hero { min-height: 700px; }
  .hero::before { inset: 14px; }
  .hero-trust { grid-template-columns: 1fr; }
  .brand-name { font-size: 24px; }
  .review-icon-row { gap: 8px; }
  .review-icon-row img { height: 42px; max-width: 86px; }
  section { padding: 15px 0; }
}

@media (min-width: 768px) { .mobile-sticky-call { display: none !important; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.06); opacity: 0.16; }
}

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