:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --steel: rgba(255, 255, 255, 0.13);
  --line: rgba(91, 134, 164, 0.34);
  --shadow: 0 24px 70px rgba(10, 32, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 32, 47, 0.92);
  backdrop-filter: blur(18px);
}

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

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

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.58);
  background: linear-gradient(135deg, #12374e, #0a202f);
  color: #d9a441;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(91, 134, 164, 0.2);
}

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

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

.desktop-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(217, 164, 65, 0.45);
}

.hamburger {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.mobile-panel {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 45;
  display: none;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a202f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

.mobile-panel a {
  display: block;
  padding: 13px 0;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.container-main {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 118px 0 74px;
  background: #0a202f;
  color: #fff;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 32, 47, 0.42), rgba(10, 32, 47, 0.9)), url("../images/hero-kitchen.jpg") center/cover no-repeat;
  transform: scale(1.03);
}

.hero::after,
.section-dark-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.11) calc(100% - 1px)), linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) calc(100% - 1px));
  background-size: 82px 82px;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #0a202f;
  background: #d9a441;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dark-eyebrow {
  color: #fff;
  background: rgba(217, 164, 65, 0.18);
  border: 1px solid rgba(217, 164, 65, 0.42);
}

.stars {
  margin-top: 22px;
  color: #d9a441;
  font-size: 28px;
  letter-spacing: 0.22em;
}

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

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 7px 9px;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.glow-button,
.header-call,
.mobile-call-in-menu,
.sticky-call {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.62);
  background: #d9a441;
  color: #0a202f !important;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38);
  animation: pulseGlow 2.45s infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.glow-button {
  padding: 15px 24px;
}

.header-call {
  padding: 13px 18px;
}

.mobile-call-in-menu {
  margin-top: 10px;
  padding: 14px 18px !important;
  color: #0a202f !important;
}

.glow-button:hover,
.header-call:hover,
.mobile-call-in-menu:hover,
.sticky-call:hover {
  background: #efbd55;
  color: #06141d !important;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(217, 164, 65, 0.5);
}

.outline-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 15px 22px;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

.section-dark-grid {
  position: relative;
  overflow: hidden;
  background: #0a202f;
  color: #fff;
}

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

.section-title {
  max-width: 800px;
  margin-bottom: 32px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.title-rule {
  width: 74px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, #d9a441, #5b86a4);
}

.section-title.center .title-rule {
  margin-inline: auto;
}

.intro-copy {
  max-width: 920px;
  margin-inline: auto;
  font-size: 18px;
}

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

.reason-card,
.service-card,
.process-card,
.area-card,
.faq-card {
  border: 1px solid rgba(91, 134, 164, 0.28);
  background: #fff;
  color: #263642;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reason-card:hover,
.service-card:hover,
.process-card:hover,
.area-card:hover,
.faq-card:hover {
  border-color: rgba(217, 164, 65, 0.72);
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(10, 32, 47, 0.24), 0 0 24px rgba(217, 164, 65, 0.18);
}

.reason-card {
  padding: 24px;
}

.reason-icon,
.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.48);
  background: #f7fbfd;
  color: #0a202f;
}

.service-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.reason-card h3,
.service-card h3,
.process-card h3,
.area-card h3,
.faq-card h3 {
  color: #111827;
}

.review-shell {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  color: #fff;
  backdrop-filter: blur(10px);
}

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

.review-stars {
  margin-bottom: 12px;
  color: #d9a441;
  letter-spacing: 0.12em;
}

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

.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.service-card {
  padding: 24px;
}

.service-card ul,
.process-card ol,
.area-card ul {
  margin-top: 14px;
  padding-left: 20px;
}

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

.split-copy {
  order: 2;
}

.split-media {
  order: 1;
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.36);
  background: linear-gradient(135deg, #0a202f, #12374e);
  padding: 34px;
  color: #fff;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

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

.number-pill {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  background: #0a202f;
  color: #fff;
  font-weight: 900;
}

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

.footer {
  padding: 48px 0 30px;
  background: #06141d;
  color: rgba(255, 255, 255, 0.78);
}

.footer a,
.footer p,
.footer li,
.footer small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer h3 {
  color: #fff;
}

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

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

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

.sticky-call-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none !important;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(10, 32, 47, 0.96);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.sticky-call {
  width: 100%;
  min-height: 56px;
  padding: 13px 12px;
  font-size: 15px;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.36), 0 0 0 0 rgba(217, 164, 65, 0.28);
  }
  72% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0), 0 0 0 26px rgba(217, 164, 65, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(217, 164, 65, 0);
  }
}

@media (max-width: 767px) {
  h1,
  h2 {
    letter-spacing: -0.03em;
  }

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

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

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

  .cta-row a {
    width: 100%;
  }

  .sticky-call-wrap {
    display: block !important;
  }

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

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

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

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

  .hamburger,
  .mobile-panel,
  .mobile-panel.is-open,
  .sticky-call-wrap,
  .sticky-call-wrap.is-visible {
    display: none !important;
  }

  .card-grid.reasons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .review-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

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

  .split-section.media-left {
    grid-template-columns: 3fr 7fr;
  }

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

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

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