html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  min-width: 320px;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1 {
  font-size: 39px;
  line-height: 1.04;
}

h2 {
  color: #111827;
  font-size: 31px;
  line-height: 1.08;
}

h3,
h4 {
  color: #111827;
  font-size: 22px;
  line-height: 1.18;
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

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

.mobile-menu-toggle {
  display: inline-flex !important;
}

.mobile-menu {
  display: none;
}

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

.phone-nowrap {
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.brand-name {
  color: #111827;
  font-size: 24px;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #150807;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(12, 7, 7, 0.86), rgba(20, 8, 8, 0.7)), url('../images/hero-kitchen.jpg');
  background-position: center;
  background-size: cover;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
}

.hero-copy {
  color: #f9fafb;
  font-size: 18px;
  line-height: 1.75;
}

.stars {
  color: var(--color-accent);
  letter-spacing: 0.18em;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 22px rgba(247, 201, 72, 0.35);
}

.review-logo-row img {
  width: auto;
  height: 48px;
  object-fit: contain;
  max-width: 86px;
  background: rgba(255, 255, 255, 0.92);
  padding: 7px;
}

.btn-primary,
.btn-secondary,
.btn-dark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.46);
  animation: pulseGlow 2.15s infinite;
}

.btn-secondary {
  color: #ffffff;
  background: var(--color-secondary);
}

.btn-dark {
  color: #ffffff;
  background: #111827;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover {
  transform: translateY(-2px) scale(1.025);
  filter: saturate(1.08);
}

.badge-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: var(--color-primary);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heading-rule {
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 14px;
  background: var(--color-secondary);
}

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

.dark-section p,
.dark-section li {
  color: #f3f4f6;
}

.organic-bg {
  position: relative;
  overflow: hidden;
}

.organic-bg::before,
.organic-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.12;
  filter: blur(2px);
}

.organic-bg::before {
  width: 360px;
  height: 360px;
  top: -150px;
  right: -120px;
  background: var(--color-secondary);
}

.organic-bg::after {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: -70px;
  background: var(--color-primary);
}

.service-card,
.problem-card,
.part-card,
.review-card,
.area-card,
.trust-card {
  border: 1px solid rgba(17, 24, 39, 0.09);
  background: #ffffff;
  color: #111827;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.service-card:hover,
.problem-card:hover,
.part-card:hover,
.review-card:hover,
.area-card:hover,
.trust-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.13);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.icon-box svg {
  width: 30px;
  height: 30px;
}

.split-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  box-shadow: 18px 18px 0 rgba(87, 92, 199, 0.16);
}

.review-track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.carousel-button {
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 900;
}

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

.mobile-sticky-call.is-visible {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

.footer-section {
  background: #100605;
  color: #f9fafb;
  font-size: 14px;
}

.footer-section a,
.footer-section p,
.footer-section li {
  color: #f9fafb;
  font-size: 14px;
}

.footer-section .brand-name {
  color: #ffffff;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(54px, 6vw, 82px);
  }

  h2 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .desktop-nav,
  .desktop-phone {
    display: flex !important;
  }

  .mobile-menu-toggle,
  .mobile-menu,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

  .review-slide {
    flex-basis: 33.333333%;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 74px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-section {
    min-height: 760px;
  }

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

  .review-logo-row img {
    height: 40px;
    max-width: 62px;
    padding: 5px;
  }
}

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