* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

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

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
  color: #111827;
  letter-spacing: -0.02em;
}

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

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

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(31, 59, 46, 0.12);
  background: #ffffff;
}

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

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

.nav-link:hover {
  color: var(--secondary);
}

.phone-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.35rem;
  background: var(--primary);
  color: #ffffff !important;
  border: 1px solid var(--primary);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: visible;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.cta-button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  animation: pulseGlow 1.8s ease-out infinite;
  pointer-events: none;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(13, 24, 20, 0.78), rgba(13, 24, 20, 0.66)), url("../images/hero-kitchen.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 39px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.hero-kicker {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

.review-icons img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
}

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

.section-dark {
  background: var(--primary);
  color: #ffffff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.72rem;
  background: rgba(88, 167, 131, 0.15);
  color: #1f3b2e;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.heading-line::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 18px;
  background: var(--accent);
}

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

h2 {
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h3,
h4 {
  font-size: 22px;
  line-height: 1.2;
}

p,
li {
  font-size: 16px;
  line-height: 1.75;
}

.text-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-image {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid rgba(31, 59, 46, 0.14);
}

.problem-card,
.trust-card,
.service-card,
.review-card,
.faq-card,
.area-card {
  border: 1px solid rgba(31, 59, 46, 0.14);
  background: #ffffff;
  color: #374151;
  box-shadow: 0 22px 60px rgba(31, 59, 46, 0.08);
}

.problem-card h3,
.trust-card h3,
.service-card h3,
.review-card h3,
.faq-card h3,
.area-card h3 {
  color: #111827;
}

.problem-card p,
.problem-card li,
.trust-card p,
.trust-card li,
.service-card p,
.service-card li,
.review-card p,
.review-card li,
.faq-card p,
.faq-card li,
.area-card p,
.area-card li {
  color: #374151;
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(88, 167, 131, 0.14);
  color: var(--primary);
}

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

.services-strip {
  background: #f6f8f5;
  border-top: 1px solid rgba(31, 59, 46, 0.12);
  border-bottom: 1px solid rgba(31, 59, 46, 0.12);
}

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

.review-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

.carousel-button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(31, 59, 46, 0.24);
  background: #ffffff;
  color: #111827;
  transition: background 180ms ease, color 180ms ease;
}

.carousel-button:hover {
  background: var(--primary);
  color: #ffffff;
}

.cta-band {
  background: linear-gradient(135deg, #1f3b2e, #16271f);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(88, 167, 131, 0.35);
  transform: rotate(24deg);
}

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

.mobile-sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(31, 59, 46, 0.18);
}

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

.mobile-sticky-call a {
  width: 100%;
  min-height: 54px;
  background: var(--primary);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.footer {
  background: #0f1915;
  color: #ffffff;
}

.footer h2,
.footer h3,
.footer p,
.footer a,
.footer li {
  color: #ffffff;
}

.footer .logo-text {
  color: #ffffff;
}

.footer .fine-print {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

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

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

  .hero {
    min-height: 660px;
  }

  .hero h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

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

  .mobile-sticky-call {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .desktop-nav,
  .desktop-phone {
    display: flex !important;
  }

  .mobile-menu-button,
  .mobile-panel,
  .mobile-sticky-call {
    display: none !important;
  }

  .text-image-grid {
    grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
  }

  .text-image-grid.image-left {
    grid-template-columns: minmax(240px, 3fr) minmax(0, 7fr);
  }

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

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }
}

@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;
  }
}
