:root {
  --font-heading: Montserrat, Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --black: #0b0f17;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-800: #2f3746;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --yellow: #f2b705;
  --yellow-dark: #c88f00;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--gray-950);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(45px, 6vw, 78px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3,
h4 {
  font-size: clamp(20px, 2.2vw, 26px);
}

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

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(17, 24, 39, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--yellow);
}

.logo-mark svg,
.phone-icon svg,
.trust-icon svg,
.service-icon svg,
.small-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--yellow);
}

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

.phone-button,
.cta-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  overflow: visible;
  border: 2px solid var(--yellow);
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.phone-button:hover,
.cta-button:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.phone-icon {
  display: inline-grid;
  place-items: center;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  padding: 150px 0 88px;
  isolation: isolate;
  place-items: center;
  background: linear-gradient(rgba(8, 11, 18, 0.7), rgba(8, 11, 18, 0.78)), url("../images/kitchen-premium.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  z-index: -1;
  width: 260px;
  height: 260px;
  background: rgba(242, 183, 5, 0.17);
  filter: blur(12px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.hero-content {
  width: min(980px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 7px 14px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.cta-band h2,
.cta-band h3,
.footer h2,
.footer h3 {
  color: var(--white);
}

.hero-lead {
  max-width: 830px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.stars {
  margin-top: 20px;
  color: var(--yellow);
  font-size: 26px;
  letter-spacing: 0.12em;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(720px, 100%);
  margin: 26px auto 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.trust-icon {
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 25px;
}

.section {
  padding: 92px 0;
}

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

.dark-section {
  background: var(--gray-950);
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p {
  margin-top: 16px;
  color: var(--gray-600);
}

.dark-section .section-head p,
.dark-section p,
.dark-section li {
  color: rgba(255, 255, 255, 0.82);
}

.accent-line {
  width: 82px;
  height: 5px;
  margin-top: 18px;
  background: var(--yellow);
}

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

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: stretch;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding: 46px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-card {
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: 34px;
  color: var(--white);
  background: var(--gray-900);
}

.proof-number {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.review-shell {
  position: relative;
}

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

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

.review-card {
  min-height: 290px;
  padding: 32px;
  border-top: 6px solid var(--yellow);
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.review-card .stars {
  margin-top: 0;
  font-size: 17px;
}

.review-card p {
  margin-top: 18px;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  color: var(--gray-950);
  font-family: var(--font-heading);
  font-size: 18px;
}

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

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gray-950);
  color: var(--gray-950);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.slider-controls button:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

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

.service-card,
.step-card,
.faq-item,
.payment-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 32px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--black);
  background: var(--yellow);
  font-size: 34px;
}

.service-card ul {
  padding-left: 1rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.icon-card {
  display: grid;
  min-height: 116px;
  padding: 18px 12px;
  border: 1px solid var(--gray-200);
  place-items: center;
  gap: 10px;
  text-align: center;
  background: var(--white);
}

.icon-card .small-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gray-950);
  background: var(--gray-100);
  font-size: 25px;
}

.icon-card span:last-child {
  color: var(--gray-950);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

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

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

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy .list-card {
  padding: 24px;
  background: var(--gray-50);
}

.split-image {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 900;
}

.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
}

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

.pill-list li {
  margin: 0;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

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

.payment-card {
  padding: 22px;
  color: var(--gray-950);
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
}

.about-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 18px;
}

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

.faq-item {
  padding: 28px;
}

.faq-item p {
  margin-top: 12px;
}

.cta-band {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--gray-950), var(--gray-800));
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: var(--yellow);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
  opacity: 0.96;
}

.cta-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-content p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.footer {
  padding: 60px 0 90px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
  font-size: 14px;
}

.footer p,
.footer a,
.footer li {
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 38px;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.footer .logo {
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.22;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.05);
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
    font-size: 16px;
  }

  .header-actions .phone-button {
    padding: 13px 14px;
    font-size: 16px;
  }

  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  h1 {
    font-size: clamp(32px, 10vw, 55px);
  }

  h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .nav-wrap {
    min-height: 68px;
    gap: 8px;
  }

  .logo {
    font-size: 24px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--gray-950);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .header-actions {
    gap: 8px;
  }

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

  .header-actions .phone-button .phone-icon {
    font-size: 19px;
  }

  .hero {
    min-height: 720px;
    padding: 122px 0 70px;
  }

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

  .trust-row {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .services-grid,
  .split-block,
  .split-block.reverse,
  .areas-grid,
  .about-card,
  .faq-grid,
  .cta-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding: 28px;
  }

  .reviews-track {
    grid-auto-columns: 82%;
  }

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

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

  .cta-band::before {
    width: 100%;
    height: 12px;
    clip-path: none;
  }

  .section {
    padding: 68px 0;
  }

  .mobile-call {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    z-index: 60;
    display: flex;
    min-height: 58px;
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  }

  .footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 22px, 480px);
  }

   .logo span:last-child {
    max-width: none;
    overflow: visible;
    white-space: normal;
  }
.logo {
  flex-shrink: 0;
}

.logo img,
.logo svg {
  max-height: 42px;
  width: auto;
}
  .hero {
    min-height: 690px;
  }

  .cta-button,
  .phone-button {
    width: 100%;
  }

  .header-actions .phone-button {
    width: 44px;
  }

  .reviews-track {
    grid-auto-columns: 94%;
  }

  .process-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
