:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --burgundy: #8c0014;
  --burgundy-dark: #63000e;
  --rose: #dc6969;
  --ink: #111827;
  --body: #374151;
  --muted: #6b7280;
  --line: #e7d8d8;
  --cream: #faf7f5;
  --white: #ffffff;
  --dark: #17060a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 0;
}

body.has-sticky-call {
  padding-bottom: 76px;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: -0.025em;
}

h1 {
  font-size: 39px;
  line-height: 1.08;
}

h2 {
  font-size: 31px;
  line-height: 1.15;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

.container-wide {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: max-content;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  border: 1px solid var(--burgundy-dark);
  box-shadow: 0 10px 24px rgba(140, 0, 20, 0.18);
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.desktop-nav a,
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

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

.phone-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  background: var(--burgundy);
  color: var(--white) !important;
  border: 1px solid var(--burgundy);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(140, 0, 20, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  position: relative;
}

.phone-button:hover,
.cta-button:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(140, 0, 20, 0.3);
}

.cta-button::after,
.phone-button.pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  animation: pulse-ring 1.8s ease-out infinite;
  pointer-events: none;
}

.header-phone {
  display: none;
}

.hamburger {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 18px 16px 22px;
}

.mobile-menu.is-open {
  display: grid;
  gap: 15px;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, rgba(23, 6, 10, 0.78), rgba(23, 6, 10, 0.7)), url("../images/hero-kitchen.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 92px 0 76px;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 12px;
  background: rgba(220, 105, 105, 0.16);
  border: 1px solid rgba(220, 105, 105, 0.55);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-eyebrow {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.stars {
  color: var(--rose);
  font-size: 25px;
  letter-spacing: 5px;
  margin: 22px 0 16px;
}

.trust-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px auto 28px;
}

.trust-icon-box {
  height: 64px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
}

.trust-icon-box img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.hero-subtitle {
  max-width: 730px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.hero-cta-note {
  margin: 0 0 18px;
  font-weight: 800;
  color: var(--white);
}

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

.section-alt {
  background: var(--cream);
}

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

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

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2::after,
.content-card h3::after,
.service-card h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--rose);
  margin-top: 12px;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.two-col {
  display: grid;
  gap: 30px;
  align-items: center;
}

.two-col.media-30 {
  grid-template-columns: 1fr;
}

.image-panel {
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
  background: var(--white);
}

.image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.service-card,
.content-card,
.review-card,
.area-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.service-card {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.line-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--rose);
  display: grid;
  place-items: center;
  color: var(--burgundy);
}

.line-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.issue-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.issue-list strong,
.parts-list strong,
.reason-list strong {
  color: var(--ink);
}

.cta-band {
  background: linear-gradient(135deg, var(--burgundy), var(--dark));
  color: var(--white);
  padding: 36px;
  display: grid;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(220, 105, 105, 0.5);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.parts-grid,
.reason-grid,
.payment-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.content-card,
.area-card,
.faq-item {
  padding: 24px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step-item {
  position: relative;
  padding: 24px 24px 24px 84px;
  background: var(--white);
  border: 1px solid var(--line);
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 800;
}

.review-shell {
  position: relative;
  overflow: hidden;
}

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

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

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

.review-name {
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 10px;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.review-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--burgundy);
  background: var(--white);
  color: var(--burgundy);
  font-weight: 900;
}

.review-button:hover {
  background: var(--burgundy);
  color: var(--white);
}

.area-lists {
  display: grid;
  gap: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 700;
}

.footer {
  background: var(--dark);
  color: #ffffff;
  padding: 46px 0 28px;
}

.footer a,
.footer p,
.footer li,
.footer h3,
.footer .brand-name {
  color: #ffffff;
  font-size: 14px;
}

.footer .brand-name {
  font-size: 24px;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 28px;
  padding-top: 22px;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

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

.mobile-sticky-call a {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 -8px 24px rgba(23, 6, 10, 0.24);
}

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

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

@keyframes pulse-ring {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.14);
    opacity: 0;
  }
  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}

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

  h2 {
    font-size: 22px;
  }

  .hero {
    min-height: 660px;
    padding: 72px 0 56px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .cta-button,
  .phone-button {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .brand-name {
    font-size: 24px;
  }
}

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

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

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .two-col.media-30 {
    grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  }

  .two-col.media-30.image-left {
    grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
  }

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

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

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

  .cta-band {
    grid-template-columns: 1fr auto;
  }

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

@media (min-width: 768px) and (max-width: 1199px) {
  .header-inner {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    padding-top: 10px;
  }
}

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

  h2 {
    font-size: 42px;
  }

  .desktop-nav {
    gap: 22px;
  }

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

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