:root {
  --font-heading: "Helvetica Neue", Arial, sans-serif;
  --font-body: Arial, sans-serif;
  --black: #050505;
  --ink: #111827;
  --charcoal: #1d1f22;
  --gray-900: #26282c;
  --gray-700: #4b4f56;
  --gray-200: #d8d8d8;
  --gray-100: #f4f2ef;
  --white: #ffffff;
  --accent: #bfa36a;
  --accent-2: #d7c79e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  padding-bottom: 74px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

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

h1 {
  font-size: clamp(39px, 9vw, 74px);
}

h2 {
  font-size: clamp(31px, 6vw, 54px);
}

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

.site-shell {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.9);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.logo img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  padding: 0 11px;
  gap: 5px;
}

.nav-toggle span {
  height: 2px;
  background: var(--white);
}

.nav-links {
  display: none;
  grid-column: 1 / -1;
  gap: 12px;
  padding: 10px 0 3px;
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.phone-pill,
.cta-button,
.bottom-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.phone-pill {
  min-height: 44px;
  padding: 10px 13px;
  font-size: 16px;
}

.phone-pill svg,
.cta-button svg,
.bottom-call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.cta-button {
  position: relative;
  min-width: 236px;
  isolation: isolate;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  opacity: 0;
  animation: glowPulse 2.1s infinite;
  z-index: -1;
}

.cta-button.dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.cta-button.dark::before {
  border-color: rgba(5, 5, 5, 0.26);
}

.phone-pill:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px 0 72px;
  color: var(--white);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.84)), url("../images/hero-kitchen.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

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

.eyebrow,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-badge::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-copy {
  max-width: 830px;
  margin: 24px auto 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
}

.stars {
  margin: 23px 0 18px;
  color: var(--accent-2);
  font-size: 28px;
  letter-spacing: 0.14em;
}

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

.trust-icons img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.hero-cta-text {
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section.dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.82);
}

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

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

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.title-rule {
  width: 74px;
  height: 2px;
  background: var(--accent);
  margin: 18px 0 0;
}

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

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

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

.split-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

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

.service-card,
.reason-card,
.process-card,
.review-card,
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.dark .service-card,
.dark .reason-card,
.dark .process-card,
.dark .review-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.service-card:hover,
.reason-card:hover,
.process-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-bottom: 19px;
}

.icon-box svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.service-card h3,
.reason-card h3,
.process-card h3 {
  margin-bottom: 14px;
}

.mini-rule {
  display: block;
  width: 42px;
  height: 2px;
  margin: -2px 0 14px;
  background: var(--accent);
}

.models-box {
  max-height: 280px;
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.sign-list,
.local-list,
.payment-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sign-list li,
.local-list li,
.payment-list li {
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(0, 0, 0, 0.04);
}

.dark .sign-list li,
.dark .local-list li {
  background: rgba(255, 255, 255, 0.06);
}

.zip-box,
.streets-box,
.contact-box {
  padding: 28px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-band {
  padding: 44px 28px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #050505, #272727);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.cta-band .title-rule {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.reason-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.review-shell {
  position: relative;
}

.review-track-wrap {
  overflow: hidden;
}

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

.review-card {
  flex: 0 0 100%;
  min-height: 260px;
}

.review-card .stars-small {
  color: var(--accent-2);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review-card strong {
  display: block;
  color: inherit;
  margin-top: 16px;
}

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

.review-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.faq-item p {
  margin-top: 14px;
}

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

.contact-link {
  color: inherit;
  font-weight: 800;
}

.site-footer {
  padding: 50px 0 36px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
  font-size: 14px;
}

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

.footer-logo {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.site-footer a {
  color: var(--white);
}

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

.bottom-call {
  position: fixed;
  z-index: 70;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 62px;
  border: 0;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
  font-size: 15px;
}

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

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

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

@media (max-width: 420px) {
  .phone-pill {
    font-size: 0;
    width: 44px;
    padding: 0;
  }

  .phone-pill svg {
    margin: 0;
  }

  .logo {
    font-size: 24px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

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

  .nav-toggle {
    display: none;
  }

  .nav-links,
  .nav-links.is-open {
    display: flex;
    grid-column: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .nav-links a {
    border-bottom: 0;
    padding: 4px 0;
  }

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

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

  .split .split-media,
  .split.reverse .split-media {
    order: initial;
  }

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

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

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

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

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .review-card {
    flex-basis: calc(100% / 3);
  }

  .bottom-call {
    display: none;
  }
}

@media (min-width: 1120px) {
  .section {
    padding: 106px 0;
  }

  .hero {
    padding-top: 120px;
  }

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

  .reason-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
