:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.65;
  background: #ffffff;
  padding-bottom: 0;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(39px, 7vw, 70px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(31px, 5vw, 48px);
  line-height: 1.08;
}

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

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

.site-shell {
  overflow: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 90, 138, 0.12);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.logo img {
  width: 40px;
  height: 40px;
  display: block;
}

.desktop-nav {
  display: none !important;
  align-items: center;
  gap: 20px;
}

.desktop-nav a,
.mobile-panel a {
  color: #263241;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: #0e5a8a;
}

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

.hamburger {
  width: 46px;
  height: 46px;
  display: inline-flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #071b2d;
  border: 0;
  border-radius: 0;
}

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

.mobile-panel {
  display: none;
  padding: 14px 0 20px;
  border-top: 1px solid rgba(14, 90, 138, 0.12);
  background: #ffffff;
}

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

.mobile-panel nav {
  display: grid;
  gap: 14px;
}

.btn,
.phone-btn,
.mobile-menu-phone,
.sticky-call {
  border-radius: 0;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 800;
}

.btn,
.phone-btn,
.mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  background: #071b2d;
  color: #ffffff !important;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.58);
  animation: pulseGlow 2.2s infinite;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.phone-btn:hover,
.mobile-menu-phone:hover {
  transform: translateY(-2px);
  background: #0e5a8a;
  color: #ffffff !important;
}

.btn.light {
  background: #ffffff;
  color: #071b2d !important;
}

.btn.light:hover {
  background: #d9eaf4;
  color: #071b2d !important;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 132px 0 72px;
  position: relative;
  background-image: linear-gradient(90deg, rgba(7, 27, 45, 0.88), rgba(7, 27, 45, 0.64), rgba(7, 27, 45, 0.78)), url("../images/hero-kitchen.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero h1,
.hero p,
.hero .kicker,
.hero .rating-text {
  color: #ffffff;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(56, 189, 248, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.38);
  color: #0f3754;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 11px;
  background: #d9eaf4;
  color: #083b5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heading-rule::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  background: #38bdf8;
}

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

.stars {
  margin: 18px 0 10px;
  color: #38bdf8;
  font-size: 28px;
  letter-spacing: 6px;
}

.review-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 18px 0 28px;
}

.review-icons img {
  width: auto;
  height: 48px;
  max-width: 96px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 19px;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(14, 90, 138, 0.16);
}

.trust-item {
  background: #ffffff;
  padding: 22px;
  border-left: 4px solid #38bdf8;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #f3f7fa;
}

.section.dark {
  background: #071b2d;
  color: #f9fafb;
}

.section.dark h2 {
  color: #ffffff;
}

.section.dark h3,
.section.dark p,
.section.dark li {
  color: #000000;
}

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

.two-col .text-col {
  min-width: 0;
}

.image-panel {
  position: relative;
  border: 1px solid rgba(14, 90, 138, 0.16);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(7, 27, 45, 0.12);
}

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

.image-stat {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 14px;
  background: #071b2d;
  color: #ffffff;
  font-weight: 800;
}

.service-grid,
.issue-grid,
.why-grid,
.payment-grid,
.city-grid,
.attraction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card,
.service-card,
.review-card,
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(14, 90, 138, 0.14);
  box-shadow: 0 18px 44px rgba(7, 27, 45, 0.07);
  border-radius: 0;
  color: #374151;
}

.service-card {
  padding: 24px;
}

.service-icon,
.mini-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  background: #d9eaf4;
  color: #083b5b;
}

.service-card ul,
.plain-list {
  padding-left: 19px;
}

.issue-grid li,
.payment-grid li,
.city-grid li,
.attraction-grid li {
  list-style: none;
  padding: 13px 14px;
  background: #ffffff;
  border-left: 4px solid #38bdf8;
  color: #263241;
  font-weight: 650;
}

.models-box,
.zip-box {
  max-height: 310px;
  overflow: auto;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(14, 90, 138, 0.16);
  color: #263241;
}

.cta-band {
  position: relative;
  background: linear-gradient(135deg, #071b2d, #0e5a8a);
  color: #ffffff;
  padding: 54px 0;
}

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

.reviews-wrap {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 22px;
  scrollbar-width: thin;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 24px;
}

.review-date {
  color: #0e5a8a;
  font-weight: 800;
}

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

.review-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: #071b2d;
  color: #ffffff;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
}

.footer {
  background: #061523;
  color: #d6e3ed;
  padding: 48px 0 30px;
  font-size: 14px;
}

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

.footer .logo {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.footer a:hover {
  color: #ffffff;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
  background: #071b2d;
  color: #ffffff !important;
  box-shadow: 0 -16px 36px rgba(7, 27, 45, 0.28);
  transform: translateY(100%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.nowrap {
  white-space: nowrap;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.46), 0 18px 40px rgba(7, 27, 45, 0.22);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0), 0 18px 40px rgba(7, 27, 45, 0.22);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 18px 40px rgba(7, 27, 45, 0.22);
  }
}

@media (min-width: 640px) {
  .trust-strip,
  .issue-grid,
  .payment-grid,
  .city-grid,
  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body.has-sticky-call {
    padding-bottom: 0;
  }

  .desktop-nav {
    display: flex !important;
  }

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

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

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

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

  .two-col.reverse .image-col {
    order: 1;
  }

  .two-col.reverse .text-col {
    order: 2;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

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

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(39px, 10vw, 49px);
  }

  h2 {
    font-size: clamp(31px, 8vw, 34px);
  }

  .header-inner {
    height: 68px;
  }

  .logo {
    font-size: 24px;
    max-width: 250px;
  }

  .hero {
    min-height: 680px;
    padding-top: 112px;
  }

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

  .section {
    padding: 58px 0;
  }
}
