* {
  box-sizing: border-box;
}

:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --shadow-soft: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-card: 0 12px 32px rgba(17, 24, 39, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  line-height: 1.65;
}

body.mobile-call-visible {
  padding-bottom: 86px;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.05rem, 8.5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.45rem, 6.1vw, 3rem);
}

h3,
h4 {
  font-size: clamp(1.375rem, 4vw, 1.65rem);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(29, 78, 56, 0.12);
  backdrop-filter: blur(18px);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(29, 78, 56, 0.22);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.04em;
}

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

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

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(29, 78, 56, 0.12);
  background: #fff;
}

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

.mobile-menu a,
.desktop-nav a {
  color: #111827;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu a:hover,
.desktop-nav a:hover {
  color: var(--primary);
}

.phone-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 0;
  background: var(--primary);
  color: #fff !important;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 32px rgba(29, 78, 56, 0.25);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  position: relative;
}

.cta-btn::after,
.phone-btn.pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  animation: pulseGlow 1.8s ease-out infinite;
  pointer-events: none;
}

.phone-btn:hover,
.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(29, 78, 56, 0.32);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(180deg, rgba(5, 20, 14, 0.78), rgba(5, 20, 14, 0.58)), url("../images/hero-kitchen.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 7.5rem 0 4.5rem;
}

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

.hero-panel {
  background: rgba(11, 23, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.star-rating {
  color: #58A783;
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
}

.review-icon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.review-icon-row img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  background: #fff;
  padding: 0.2rem 0.38rem;
  border-radius: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  background: rgba(88, 167, 131, 0.15);
  border-left: 4px solid var(--secondary);
  padding: 0.42rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-pad {
  padding: 4.75rem 0;
}

.heading-rule {
  width: 84px;
  height: 4px;
  background: var(--secondary);
  margin-top: 1rem;
}

.wave-bg {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 15%, rgba(88, 167, 131, 0.24), transparent 32%), linear-gradient(135deg, #f7fbf8 0%, #ffffff 52%, #eef7f2 100%);
}

.wave-bg::before,
.wave-bg::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 180px;
  border: 1px solid rgba(88, 167, 131, 0.28);
  transform: rotate(-11deg);
  z-index: 0;
}

.wave-bg::before {
  top: 2rem;
  right: -160px;
}

.wave-bg::after {
  bottom: 1rem;
  left: -180px;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.split-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(29, 78, 56, 0.12);
  box-shadow: var(--shadow-card);
}

.split-text {
  padding: 1.6rem;
}

.split-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.trust-grid,
.service-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.trust-card,
.service-card,
.review-card,
.faq-card,
.coverage-card {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(29, 78, 56, 0.12);
  border-radius: 0;
  box-shadow: var(--shadow-card);
}

.service-icon,
.trust-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f5ef;
  color: var(--primary);
  border: 1px solid rgba(29, 78, 56, 0.16);
  border-radius: 0;
}

.reviews-shell {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

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

.review-card {
  min-height: 245px;
  padding: 1.4rem;
}

.review-name {
  color: var(--heading);
  font-weight: 900;
}

.review-stars {
  color: var(--secondary);
  letter-spacing: 0.08em;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(29, 78, 56, 0.18);
  background: #fff;
  color: var(--primary);
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 900;
}

.dark-cta,
.site-footer {
  background: linear-gradient(135deg, #0B1712, #123525 58%, #1D4E38);
  color: #fff;
}

.dark-cta h2,
.dark-cta p,
.site-footer h3,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer small {
  color: #fff;
}

.site-footer a:hover {
  color: #d7f3e7;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-pills span {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  background: #fff;
  color: #111827;
  border: 1px solid rgba(29, 78, 56, 0.14);
  font-weight: 800;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none !important;
  transform: translateY(110%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  background: #0B1712;
  padding: 0.72rem 0.85rem calc(0.72rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.mobile-sticky-call a {
  width: 100%;
  min-height: 52px;
  color: #fff !important;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 -8px 32px rgba(88, 167, 131, 0.2);
}

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

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

@keyframes pulseGlow {
  0% {
    opacity: 0.8;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

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

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

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

  .split-card {
    grid-template-columns: minmax(0, 70%) minmax(230px, 30%);
  }

  .split-card.reverse {
    grid-template-columns: minmax(230px, 30%) minmax(0, 70%);
  }

  .split-card.reverse .split-text {
    order: 2;
  }

  .split-card.reverse .split-media {
    order: 1;
  }

  .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 1024px) {
  .section-pad {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 6.75rem;
  }

  .section-pad {
    padding: 3.75rem 0;
  }

  .split-text {
    padding: 1.25rem;
  }
}
