:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --stone: #efe6da;
  --ink: #111827;
  --copper: #a65511;
  --sand: #d39a6b;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

a, button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

h1, h2, h3, h4 {
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -.025em;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3, h4 {
  font-size: 1.45rem;
}

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

.site-shell {
  background:
    radial-gradient(circle at 15% 4%, rgba(211, 154, 107, .20), transparent 32rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,247,241,.96));
}

.container-tight {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.logo-link {
  color: #111827;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.03em;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: #17120e;
  color: #fff;
  border: 2px solid var(--sand);
}

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

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

.mobile-only-sticky {
  display: flex !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(166, 85, 17, .15);
}

.desktop-nav a {
  color: #2d251e;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--copper);
}

.hamburger {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 24, 39, .22);
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #111827;
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 55;
  background: rgba(255,255,255,.98);
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
  border-bottom: 1px solid rgba(166, 85, 17, .18);
  box-shadow: 0 24px 60px rgba(23, 18, 14, .16);
  transition: transform .28s ease, opacity .28s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: #111827;
  font-weight: 700;
  display: block;
  padding: .9rem 1rem;
  border-bottom: 1px solid #f0e4d7;
}

.hero-section {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(9,7,5,.74), rgba(9,7,5,.64)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
}

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

.hero-stars {
  color: var(--sand);
  font-size: 1.6rem;
  letter-spacing: .15em;
}

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

.review-icons img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  padding: 5px 7px;
  border: 1px solid rgba(211,154,107,.42);
}

.glass-panel {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}

.stone-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(251,247,241,.94)),
    radial-gradient(circle at 20% 20%, rgba(166,85,17,.13), transparent 24rem),
    repeating-linear-gradient(125deg, rgba(17,24,39,.028) 0 1px, transparent 1px 13px);
  border: 1px solid rgba(166,85,17,.14);
  box-shadow: 0 22px 65px rgba(60, 40, 25, .08);
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(23,18,14,.98), rgba(50,31,18,.96)),
    repeating-linear-gradient(130deg, rgba(211,154,107,.12) 0 1px, transparent 1px 18px);
  color: #fff;
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p,
.dark-panel li {
  color: #fff;
}

.section-badge {
  display: inline-block;
  color: #17120e;
  background: rgba(211,154,107,.45);
  border-left: 4px solid var(--copper);
  padding: .32rem .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .78rem;
}

.heading-rule::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  background: var(--copper);
  margin-top: .9rem;
}

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

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .9rem 1.3rem;
  background: #17120e;
  color: #fff !important;
  border: 1px solid rgba(211,154,107,.75);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(23,18,14,.22);
}

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

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--copper);
  color: #fff !important;
}

.light-call {
  background: #fff;
  color: #111827 !important;
  border-color: rgba(166,85,17,.36);
}

.service-icon {
  width: 54px;
  height: 54px;
  color: var(--copper);
  background: #fff7ee;
  border: 1px solid rgba(166,85,17,.18);
  padding: .7rem;
  flex: 0 0 auto;
}

.card-flat {
  background: #fff;
  border: 1px solid rgba(166,85,17,.14);
  box-shadow: 0 18px 45px rgba(70,45,24,.06);
}

.issue-list li,
.service-list li,
.area-list li {
  margin-top: .6rem;
}

.split-block {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.split-block .split-text {
  order: 2;
}

.split-block .split-image {
  order: 1;
}

.split-block img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.reviews-track {
  display: flex;
  transition: transform .42s ease;
  will-change: transform;
}

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

.review-card {
  height: 100%;
  background: #fff;
  color: #374151;
  border: 1px solid rgba(211,154,107,.24);
  padding: 1.25rem;
  box-shadow: 0 18px 46px rgba(23,18,14,.06);
}

.review-card strong {
  color: #111827;
}

.review-controls button {
  border: 1px solid rgba(166,85,17,.3);
  background: #fff;
  color: #111827;
  width: 46px;
  height: 46px;
  font-weight: 900;
}

.faq-item {
  border: 1px solid rgba(166,85,17,.14);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  color: #111827;
  font-weight: 800;
}

.faq-item p {
  padding: 0 1rem 1rem;
  margin: 0;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(23,18,14,.96);
  transform: translateY(115%);
  opacity: 0;
  pointer-events: none;
  transition: transform .26s ease, opacity .26s ease;
}

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

.mobile-sticky-call a {
  width: 100%;
  max-width: none;
  min-height: 50px;
  font-size: 16px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.footer-link {
  color: #f8eadf;
}

.footer-link:hover {
  color: #fff;
}

.footer-small {
  font-size: 14px;
  line-height: 1.65;
}

@keyframes pulseGlow {
  0% { transform: scale(.98); opacity: .72; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

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

  h2 {
    font-size: 2.9rem;
  }

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

  .mobile-only-sticky,
  .hamburger,
  .mobile-menu,
  .mobile-sticky-call {
    display: none !important;
  }

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

  .split-block {
    grid-template-columns: 7fr 3fr;
  }

  .split-block.image-left {
    grid-template-columns: 3fr 7fr;
  }

  .split-block .split-text,
  .split-block.image-left .split-text {
    order: initial;
  }

  .split-block .split-image,
  .split-block.image-left .split-image {
    order: initial;
  }

  .review-slide {
    min-width: 33.333333%;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none !important;
  }

  .container-tight {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    min-height: 720px;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .review-icons img {
    height: 42px;
    max-width: 72px;
  }

  .cta-button {
    width: 100%;
  }
}
