html {
  scroll-behavior: smooth;
}

:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #0a0a0a;
  --ink-soft: #2b2b2b;
  --paper: #ffffff;
  --paper-warm: #f5f5f2;
  --line: #d8d8d2;
  --accent: #d6a24a;
}

body {
  font-family: var(--font-body);
  color: #2b2b2b;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: #111827;
  letter-spacing: -0.035em;
  line-height: 1.06;
  font-weight: 900;
}

h1 {
  font-size: clamp(45px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3,
h4 {
  font-size: clamp(20px, 2vw, 28px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo-link {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

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

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

.mobile-menu-button {
  display: inline-flex !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.nav-link {
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-link:hover {
  color: #6f4c13;
}

.btn-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--ink);
  color: #ffffff !important;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: visible;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  animation: pulseGlow 1.9s infinite;
  pointer-events: none;
}

.btn-pulse:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: var(--ink) !important;
}

.btn-light {
  background: #ffffff;
  color: var(--ink) !important;
  border-color: #ffffff;
}

.btn-light:hover {
  background: var(--accent);
  color: var(--ink) !important;
  border-color: var(--accent);
}

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

.hero-section {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000000;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.74), rgba(0,0,0,0.72)), url('../images/kitchen-premium.jpg') center/cover no-repeat;
}

.hero-grid {
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

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

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

.hero-copy,
.dark-section p,
.dark-section li {
  color: #f4f4f1;
}

.star-rating {
  color: var(--accent);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.trust-icon-row img {
  width: auto;
  height: 48px;
  max-width: 110px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: #5f430f;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--accent);
}

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

.heading-rule::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 18px;
  background: var(--accent);
}

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

.geometric-card {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #2b2b2b;
  box-shadow: 14px 14px 0 #0a0a0a;
}

.service-card {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #2b2b2b;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 0 #0a0a0a;
}

.service-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #ffffff;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  gap: 42px;
  align-items: center;
}

.split-block.reverse {
  grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
}

.split-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: -14px 14px 0 var(--accent);
}

.issue-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.dark-section {
  background: #0a0a0a;
  color: #ffffff;
}

.dark-card {
  background: #151515;
  color: #f4f4f1;
  border: 1px solid #343434;
}

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

.zip-badge,
.city-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: #ffffff;
  padding: 6px 13px;
  font-weight: 900;
}

.reason-card {
  border-left: 6px solid var(--accent);
  background: #ffffff;
  color: #2b2b2b;
}

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

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

.review-card {
  height: 100%;
  background: #ffffff;
  color: #2b2b2b;
  border: 1px solid var(--line);
  padding: 28px;
}

.review-card strong {
  color: var(--ink);
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer {
  background: #0a0a0a;
  color: #f4f4f1;
  font-size: 14px;
}

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

.footer h3,
.footer h4 {
  color: #ffffff;
}

.mobile-sticky-call {
  display: flex !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  border-top: 3px solid var(--accent);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

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

.mobile-safe-bottom {
  padding-bottom: 82px;
}

.animate-rise {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.animate-rise.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

  .mobile-safe-bottom {
    padding-bottom: 0;
  }
}

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

  h2 {
    font-size: clamp(21px, 8vw, 34px);
  }

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

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

  .split-block,
  .split-block.reverse {
    display: flex;
    flex-direction: column;
  }

  .split-block.reverse .split-image {
    order: 2;
  }

  .geometric-card {
    box-shadow: 8px 8px 0 #0a0a0a;
  }

  .trust-icon-row img {
    height: 42px;
    max-width: 92px;
  }

  .btn-pulse {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
