* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

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

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

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

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  color: var(--heading);
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
}

.logo-mark svg,
.phone-icon svg,
.mini-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-size: 18px;
  text-decoration: none;
  color: var(--heading);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--heading);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.01em;
  overflow: visible;
  box-shadow: 0 16px 28px rgba(107, 14, 9, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 22px 38px rgba(107, 14, 9, 0.3);
}

.phone-icon {
  display: inline-grid;
  place-items: center;
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.58)), url("../images/kitchen-premium.jpg") center/cover no-repeat;
}

.hero-content {
  padding: 112px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 13px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  color: #fff;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

h3,
h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.service-card h3::after,
.step-card h3::after,
.review-card h3::after,
.faq-item h3::after,
.trust-card h3::after,
.site-footer h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px 0 14px;
  background: var(--primary);
}

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

.hero-copy {
  width: min(900px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.stars {
  margin: 22px 0 16px;
  color: var(--primary);
  font-size: 30px;
  letter-spacing: 3px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px auto 28px;
}

.hero-icons img {
  width: 86px;
  height: 58px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
}

.hero-cta-text {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -72px;
  position: relative;
  z-index: 3;
  background: var(--line);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.16);
}

.trust-card {
  background: #fff;
  padding: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mini-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  background: #f8e9e7;
  color: var(--primary);
}

.section {
  padding: 92px 0;
}

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

.section.dark {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.84);
}

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

.section-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.accent-line {
  width: 74px;
  height: 4px;
  background: var(--primary);
  margin: 18px auto 0;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 44px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(280px, 3fr) minmax(0, 7fr);
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 26px 54px rgba(17, 24, 39, 0.14);
}

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

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 14, 9, 0.35);
  box-shadow: 0 24px 45px rgba(17, 24, 39, 0.12);
}

.service-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service-card p,
.step-card p,
.review-card p,
.faq-item p {
  margin-bottom: 0;
}

.decision-list {
  display: grid;
  gap: 14px;
}

.decision-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 18px;
}

.check {
  color: var(--primary);
  font-weight: 900;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), #290706);
  color: #fff;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.models-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  font-size: 16px;
  line-height: 1.85;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.area-list span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-weight: 700;
}

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

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.reviews-shell {
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(6, calc((100% - 36px) / 3));
  gap: 18px;
  transition: transform 320ms ease;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}

.review-stars {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

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

.carousel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--heading);
  font-size: 20px;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

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

.site-footer {
  background: #0b111d;
  color: rgba(255, 255, 255, 0.76);
  padding: 58px 0 34px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.4fr;
  gap: 36px;
  margin-bottom: 34px;
}

.site-footer .logo {
  color: #fff;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: #fff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.65;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 -12px 30px rgba(17, 24, 39, 0.24);
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.98);
    opacity: 0.72;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 18px;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .logo {
    font-size: 24px;
    white-space: normal;
    max-width: calc(100vw - 160px);
  }

  .header-actions .btn {
    padding: 10px 12px;
    min-height: 44px;
    font-size: 0;
  }

  .header-actions .btn .phone-icon {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 86px 0 110px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .trust-strip,
  .intro-grid,
  .split-grid,
  .split-grid.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid,
  .steps-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 34px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-track {
    grid-template-columns: repeat(6, 100%);
  }

  .mobile-call {
    display: block;
  }
}
