:root {
  --shadow-soft: 0 24px 80px rgba(7, 24, 39, 0.14);
  --shadow-card: 0 16px 46px rgba(33, 138, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  line-height: 1.65;
}

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

.site-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 42%, #ffffff 100%);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #071827;
  color: #ffffff;
  flex: 0 0 auto;
}

.logo-mark svg {
  width: 28px;
  height: 28px;
}

.brand-name {
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #111827;
}

.nav-link {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: #096ad2;
}

.phone-button,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.25rem;
  background: #071827;
  color: #ffffff !important;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: whitePulse 2.6s infinite;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.primary-cta {
  background: #218aff;
  min-height: 58px;
  padding: 0 1.55rem;
}

.phone-button:hover,
.primary-cta:hover {
  transform: scale(1.035);
  background: #096ad2;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  margin: 5px 0;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 24, 39, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  width: min(86vw, 360px);
  min-height: 100%;
  background: #ffffff;
  margin-left: auto;
  transform: translateX(100%);
  transition: transform 260ms ease;
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.2);
}

.mobile-panel.is-open .mobile-drawer {
  transform: translateX(0);
}

.hero-section {
  min-height: 720px;
  background-image: linear-gradient(180deg, rgba(7, 24, 39, 0.73), rgba(7, 24, 39, 0.62)), url('../images/hero-kitchen.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-section h1,
.hero-section p {
  color: #ffffff;
}

.hero-kicker {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stars {
  color: #85bfff;
  letter-spacing: 0.18em;
  text-shadow: 0 0 22px rgba(133, 191, 255, 0.5);
}

.hero-badges img {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.section-wrap {
  padding: 72px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(33, 138, 255, 0.1);
  color: #075daf;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.42rem 0.75rem;
  margin-bottom: 0.85rem;
}

h1 {
  font-size: clamp(39px, 7.2vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

h2 {
  font-size: clamp(31px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 950;
}

h3,
h4 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 900;
}

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

.heading-rule::after {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, #218aff, #85bfff);
}

.heading-rule.centered::after {
  margin-left: auto;
  margin-right: auto;
}

h3::after,
h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #218aff, #85bfff);
}

.premium-card {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(33, 138, 255, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.premium-card:hover {
  transform: scale(1.018);
  box-shadow: var(--shadow-soft);
}

.media-panel {
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.media-panel:hover img {
  transform: scale(1.045);
}

.two-col-media {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  gap: 2rem;
  align-items: center;
}

.icon-tile {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #218aff, #85bfff);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon-tile svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.review-card {
  min-height: 100%;
}

.dot {
  width: 11px;
  height: 11px;
  background: #c8d8ec;
  transition: transform 180ms ease, background-color 180ms ease;
}

.dot.is-active {
  background: #218aff;
  transform: scale(1.25);
}

.dark-band {
  background: radial-gradient(circle at 12% 0%, rgba(33, 138, 255, 0.28), transparent 38%), #071827;
  color: #ffffff;
}

.dark-band h2,
.dark-band h3,
.dark-band h4,
.dark-band p,
.dark-band li {
  color: #ffffff;
}

.dark-band .premium-card h3,
.dark-band .premium-card h4,
.dark-band .premium-card p,
.dark-band .premium-card li {
  color: #111827;
}

.dark-card {
  background: #071827;
  color: #ffffff;
}

.dark-card h3,
.dark-card h4,
.dark-card p,
.dark-card li {
  color: #ffffff;
}

.dark-band .section-badge {
  background: rgba(133, 191, 255, 0.18);
  color: #ffffff;
}

.cta-strip {
  background: linear-gradient(135deg, #218aff 0%, #071827 100%);
  color: #ffffff;
}

.cta-strip h2,
.cta-strip p {
  color: #ffffff;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 24, 39, 0.96);
}

.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-call a {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  background: #218aff;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
  text-decoration: none;
  animation: whitePulse 2.6s infinite;
}

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

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

@keyframes whitePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38); }
  70% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (min-width: 768px) {
  .review-slide {
    min-width: 33.333333%;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(39px, 11vw, 53px);
  }

  h2 {
    font-size: clamp(31px, 8.7vw, 40px);
  }

  .section-wrap {
    padding: 54px 0;
  }

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

  .hero-badges {
    gap: 0.5rem;
  }

  .hero-badges img {
    height: 48px;
    padding: 7px 8px;
    max-width: 31%;
  }

  .two-col-media {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .mobile-header-phone {
    width: 100%;
  }

  .mobile-header-phone .phone-button {
    width: 100%;
    min-height: 46px;
    font-size: 16px;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}
