:root {
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
  --max: 1180px;
  --border: #d9dee2;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* { box-sizing: border-box; border-radius: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #374151;
  background: #ffffff;
}

body.no-scroll { overflow: hidden; }

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

a { text-decoration: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.topbar {
  background: #111827;
  color: #f9fafb;
  font-size: 14px;
  padding: 8px 0;
}

.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

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

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  background: #084663;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-mark svg, .phone-icon svg, .service-icon svg, .trust-icon svg, .step-number svg { width: 24px; height: 24px; stroke: currentColor; }

.nav-menu { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }

.nav-menu a {
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
}

.nav-menu a:hover { color: #084663; }

.phone-button, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  background: #084663;
  color: #ffffff;
  border: 2px solid #084663;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.58);
  animation: pulseGlow 2.4s infinite;
}

.phone-button:hover, .cta-button:hover { background: #052f43; color: #ffffff; transform: translateY(-2px); }

.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border); background: #fff; }

.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #111827; }

.hero {
  min-height: 730px;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  color: #ffffff;
  text-align: center;
  padding: 110px 0 90px;
  background-image: linear-gradient(rgba(8, 30, 44, 0.78), rgba(8, 30, 44, 0.72)), url('../images/kitchen-premium.jpg');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  margin: 0 auto 18px;
  color: #ffffff;
  max-width: 980px;
  font-size: clamp(35px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero .lead {
  max-width: 920px;
  margin: 0 auto 20px;
  color: #eef6f8;
  font-size: 20px;
}

.stars { color: #084663; font-size: 26px; letter-spacing: 4px; margin: 14px 0; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }

.hero-icons { display: flex; justify-content: center; align-items: center; gap: 16px; margin: 22px auto 26px; flex-wrap: wrap; }

.hero-icons img { width: 74px; height: 74px; object-fit: contain; background: rgba(255,255,255,0.92); padding: 10px; border: 1px solid rgba(255,255,255,0.35); }

.hero-cta-text { color: #ffffff; font-size: 22px; font-weight: 800; margin: 24px 0 12px; }

.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 900px; margin: 46px auto 0; background: rgba(255,255,255,0.24); }

.metric { background: rgba(255,255,255,0.12); padding: 20px; color: #fff; }

.metric strong { display: block; font-size: 24px; color: #fff; }

.section { padding: 86px 0; }

.section.alt { background: #f4f6f7; }

.section.dark { background: #111827; color: #f9fafb; }

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

.eyebrow {
  display: inline-flex;
  background: #084663;
  color: #ffffff;
  padding: 5px 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 12px;
}

h2 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.13; margin: 0 0 22px; letter-spacing: -0.03em; }

h3, h4 { font-size: 20px; line-height: 1.25; margin: 0 0 12px; color: #111827; }

h3::after, h4::after { content: ''; display: block; width: 44px; height: 3px; background: #084663; margin-top: 10px; }

.footer h3::after { background: #ffffff; }

p { margin: 0 0 18px; font-size: 16px; }

.heading-line { width: 70px; height: 4px; background: #084663; margin: -10px 0 28px; }

.center { text-align: center; }

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

.split { display: grid; grid-template-columns: 7fr 3fr; gap: 46px; align-items: center; }

.split.reverse { grid-template-columns: 3fr 7fr; }

.split.reverse .copy { order: 2; }

.split.reverse .visual { order: 1; }

.visual-card { position: relative; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow); }

.visual-card img { width: 100%; height: 360px; object-fit: cover; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); background: #fff; margin-top: 36px; }

.trust-item { padding: 24px; border-right: 1px solid var(--border); }

.trust-item:last-child { border-right: 0; }

.trust-icon, .service-icon, .step-number { width: 54px; height: 54px; display: grid; place-items: center; color: #084663; background: #e8f1f4; margin-bottom: 14px; }

.reviews-shell { position: relative; }

.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 10px 2px 24px; }

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

.review-card { scroll-snap-align: start; background: #ffffff; border: 1px solid var(--border); padding: 28px; min-height: 230px; box-shadow: 0 10px 32px rgba(17,24,39,0.08); }

.review-card .quote { font-size: 18px; color: #111827; }

.review-nav { display: flex; justify-content: center; gap: 12px; }

.review-nav button { width: 46px; height: 46px; background: #084663; color: #fff; border: 0; font-size: 22px; cursor: pointer; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card { background: #ffffff; border: 1px solid var(--border); padding: 24px; min-height: 286px; transition: transform 0.25s ease, box-shadow 0.25s ease; }

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.check-list { margin: 0; padding: 0; list-style: none; }

.check-list li { position: relative; padding-left: 28px; margin: 10px 0; }

.check-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; background: #084663; }

.models { background: #111827; color: #f9fafb; padding: 30px; font-size: 15px; line-height: 1.75; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.step { background: #ffffff; border: 1px solid var(--border); padding: 26px; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.tag { border: 1px solid var(--border); background: #ffffff; padding: 8px 12px; color: #111827; }

.cta-band { background: #084663; color: #ffffff; padding: 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; }

.cta-band h2 { color: #ffffff; margin-bottom: 8px; }

.cta-band .heading-line { background: #ffffff; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.faq-item { border: 1px solid var(--border); background: #fff; padding: 22px; }

.footer { background: #0b1018; color: #d1d5db; padding: 58px 0 96px; font-size: 14px; }

.footer .logo { color: #ffffff; margin-bottom: 20px; }

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

.footer a { color: #ffffff; }

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

.disclaimer { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 36px; padding-top: 24px; color: #aeb6c2; }

.mobile-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #084663; color: #ffffff; min-height: 62px; align-items: center; justify-content: center; gap: 10px; font-weight: 900; box-shadow: 0 -8px 28px rgba(0,0,0,0.25); }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.52), 0 0 0 0 rgba(8,70,99,0.28); }
  70% { box-shadow: 0 0 0 14px rgba(255,255,255,0), 0 0 0 22px rgba(8,70,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 0 0 0 rgba(8,70,99,0); }
}

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr auto auto; gap: 12px; padding: 10px 0; }
  .nav-toggle { display: block; grid-column: 3; }
  .nav-menu { grid-column: 1 / -1; display: none; flex-direction: column; align-items: stretch; gap: 0; border-top: 1px solid var(--border); padding: 8px 0; }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 10px 0; font-size: 18px; }
  .phone-button { grid-column: 2; padding: 0 14px; min-height: 48px; }
  .split, .split.reverse, .location-grid { grid-template-columns: 1fr; }
  .split.reverse .copy, .split.reverse .visual { order: initial; }
  .services-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .reviews-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .cta-band { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar { display: none; }
  .logo { font-size: 24px; max-width: 100%; white-space: normal; line-height: 1.05; }
  .logo-mark { width: 40px; height: 40px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .phone-button { grid-row: 2; grid-column: 1 / 2; width: 100%; font-size: 16px; }
  .nav-toggle { grid-row: 2; grid-column: 2; }
  .nav-menu { grid-row: 3; }
  .hero { min-height: 660px; padding: 76px 0 62px; }
  .hero h1 { font-size: clamp(35px, 10vw, 44px); }
  h2 { font-size: clamp(28px, 8vw, 32px); }
  .hero .lead { font-size: 18px; }
  .hero-metrics, .decision-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .services-grid, .steps, .trust-strip { grid-template-columns: 1fr; }
  .reviews-track { grid-auto-columns: 88%; }
  .section { padding: 62px 0; }
  .visual-card img { height: 280px; }
  .cta-band { padding: 28px; }
  .mobile-call { display: flex; }
  .footer { padding-bottom: 120px; }
}
