:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --metal: rgba(255, 255, 255, 0.42);
  --ink: #111827;
  --wine: #7B120F;
  --red: #CF1919;
  --blue: #4676DB;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(39px, 7.8vw, 86px);
}

h2 {
  font-size: clamp(31px, 5.4vw, 58px);
}

h3,
h4 {
  font-size: clamp(22px, 3vw, 30px);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(17, 24, 39, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.logo-link {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo-link:hover {
  color: #ffffff;
}

.logo-link img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: inline-flex !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: transparent;
}

.menu-panel {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 75;
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px;
}

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

.menu-panel a {
  display: block;
  padding: 13px 0;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-phone {
  margin-top: 16px;
  width: 100%;
  white-space: nowrap;
}

.btn-call,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  background: #CF1919;
  color: #ffffff !important;
  border: 2px solid #CF1919;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42);
  animation: whitePulse 2.2s infinite;
}

.btn-call:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: #7B120F;
  border-color: #7B120F;
  color: #ffffff !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 118px 0 74px;
  color: #ffffff;
  background: #111827;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.62)), url('../images/hero-kitchen.png') center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -20vw;
  top: 10vh;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(70, 118, 219, 0.16);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #ffffff;
}

.hero .lead {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, 0.9);
}

.stars {
  color: #facc15;
  font-size: 24px;
  letter-spacing: 0.18em;
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 11px;
  color: #ffffff;
  background: #CF1919;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.section-dark {
  background: #111827;
  color: #f9fafb;
}

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

.section-alt {
  background: #f3f4f6;
}

.accent-line::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, #CF1919, #4676DB);
}

.accent-line.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.art-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  color: #374151;
  border: 1px solid rgba(17, 24, 39, 0.16);
  box-shadow: 18px 22px 0 rgba(17, 24, 39, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.art-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(123, 18, 15, 0.16);
  pointer-events: none;
}

.art-card:hover {
  transform: translateY(-8px) rotate(-0.7deg);
  border-color: rgba(207, 25, 25, 0.5);
  box-shadow: 25px 30px 0 rgba(70, 118, 219, 0.12);
}

.art-card.depth:hover {
  transform: translateY(-10px) scale(1.03);
}

.art-card.twist:hover {
  transform: translateY(-6px) rotate(1.2deg);
}

.art-card h3,
.art-card h4,
.art-card p,
.art-card li {
  color: #111827;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #CF1919;
  background: #f9fafb;
  border: 1px solid rgba(17, 24, 39, 0.13);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.split-image {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, 0.18);
  box-shadow: -18px 18px 0 rgba(207, 25, 25, 0.12);
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.14);
}

.process-step h4::after,
.footer h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 12px;
  background: #CF1919;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #111827;
  font-weight: 900;
}

.review-shell {
  overflow: hidden;
}

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

.review-card {
  flex: 0 0 100%;
  padding: 24px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.16);
}

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

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
}

.zip-grid,
.payment-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mini-card {
  padding: 18px;
  background: #ffffff;
  color: #111827;
  border-left: 5px solid #CF1919;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.mini-card p,
.mini-card li,
.mini-card strong {
  color: #111827;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: #7B120F;
  color: #ffffff;
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.cta-band::before {
  width: 280px;
  height: 280px;
  left: -120px;
  top: -110px;
}

.cta-band::after {
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -180px;
}

.footer {
  padding: 54px 0 84px;
  background: #111827;
  color: #d1d5db;
  font-size: 14px;
}

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

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

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none !important;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  border-top: 3px solid #CF1919;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

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

@keyframes whitePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42); }
  72% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .split-row {
    grid-template-columns: minmax(0, 7fr) minmax(220px, 3fr);
  }

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

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

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid .wide {
    grid-column: span 2;
  }

  .gallery-grid .tall {
    grid-row: span 2;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 92vh;
    padding-top: 106px;
  }

  h1 {
    font-size: clamp(39px, 13vw, 60px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 43px);
  }

  .trust-icons img {
    height: 42px;
  }

  #particleCanvas {
    opacity: 0.28;
  }
}
