:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --black: #050505;
  --ink: #111827;
  --muted: #4B5563;
  --line: #D7D7D2;
  --soft: #F4F4F2;
  --white: #FFFFFF;
  --accent: #D9A441;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: 39px;
}

h2 {
  font-size: 31px;
}

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

p,
li,
summary,
dd,
dt,
label,
input,
textarea,
button {
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
}

.logo-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

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

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

.mobile-menu-toggle {
  display: inline-flex !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 70;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.98);
  padding: 24px;
}

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

.mobile-panel a,
.desktop-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.phone-button,
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--black) !important;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.cta-button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  opacity: 0;
  animation: pulseGlow 1.9s ease-out infinite;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)), url('../images/hero-kitchen.jpg');
  background-position: center;
  background-size: cover;
  color: var(--white);
}

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

.hero p,
.section-dark p,
.section-dark li,
.section-dark dd,
.section-dark dt,
.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.hero-eyebrow,
.section-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-left: 4px solid var(--accent);
  background: rgba(217, 164, 65, 0.14);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 7px 11px;
  text-transform: uppercase;
}

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

.review-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

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

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.hero-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.heading-rule::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 16px;
  background: var(--accent);
}

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

.split-70-30 {
  display: grid;
  gap: 32px;
}

.split-70-30 .text-col {
  min-width: 0;
}

.image-panel {
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.trust-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.process-card,
.problem-card,
.faq-item,
.review-card {
  border: 1px solid var(--line);
  background: #ffffff80;
  color: var(--ink);
}

.service-card {
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--black);
  box-shadow: 10px 10px 0 var(--black);
  transform: translate(-3px, -3px);
}

.line-icon {
  width: 46px;
  height: 46px;
  color: var(--black);
}

.dark-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  color: var(--white);
}

.dark-panel h3,
.dark-panel h4 {
  color: var(--white);
}

.dark-panel p,
.dark-panel li {
  color: rgba(255, 255, 255, 0.86);
}

.process-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.zip-cloud span,
.city-cloud span {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 7px 10px;
  font-weight: 700;
}

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

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

.review-card {
  height: 100%;
  padding: 24px;
}

.review-card .stars {
  font-size: 18px;
  letter-spacing: 1px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-weight: 900;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-band {
  background: radial-gradient(circle at 15% 20%, rgba(217, 164, 65, 0.22), transparent 28%), var(--black);
  color: var(--white);
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

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

.footer a[href^="tel:"] {
  color: var(--white);
  font-weight: 900;
}

.mobile-sticky-call {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, 0.98);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.mobile-sticky-call a {
  width: 100%;
  min-height: 54px;
  color: var(--black) !important;
  font-size: 16px;
}

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

@media (max-width: 767px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .hero {
    min-height: 760px;
  }

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

  body {
    padding-bottom: 84px;
  }
}

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

  h2 {
    font-size: 44px;
  }

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

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

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

  .split-70-30 {
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
    align-items: center;
  }

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

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

  .card-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 1180px) {
  .container-wide {
    max-width: 1180px;
  }
}
