:root {
  --font-heading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cobalt: #2818B1;
  --cobalt-2: #5B4CD8;
  --ink: #111827;
  --muted: #4B5563;
  --line: #E5E7EB;
  --cream: #F7F8FF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #1F2937;
  background: #FFFFFF;
}

h1,
h2,
h3,
h4,
.brand-text {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

h1 {
  font-size: 52px;
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 850;
  color: #111827;
}

h3,
h4 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-text {
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  color: #1F2937;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--cobalt);
  transition: width 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

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

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

.mobile-menu-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #D1D5DB;
  color: #111827;
  background: #FFFFFF;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #111827;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #E5E7EB;
  background: #FFFFFF;
}

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

.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: #111827;
  font-size: 16px;
  font-weight: 750;
}

.phone-button,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  background: var(--cobalt);
  color: #FFFFFF !important;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.52);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  animation: pulseGlow 2.4s infinite;
}

.phone-button:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  background: #160C73;
  box-shadow: 0 18px 44px rgba(40, 24, 177, 0.24);
}

.hero-section {
  position: relative;
  min-height: 760px;
  color: #FFFFFF;
  background-image: linear-gradient(115deg, rgba(6, 10, 28, 0.88), rgba(40, 24, 177, 0.72)), url('../images/hero-kitchen.jpg');
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-section h1,
.hero-section p {
  color: #FFFFFF;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.stars {
  color: #F6C343;
  font-size: 26px;
  letter-spacing: 0.16em;
}

.hero-badge-img {
  width: auto;
  height: 48px;
  max-width: 31%;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title::after,
.card-title::after {
  content: '';
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 14px;
  background: var(--cobalt);
}

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

.geom-card {
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  box-shadow: 0 8px 0 rgba(40, 24, 177, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.geom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 24, 177, 0.25);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
}

.cobalt-band {
  color: #FFFFFF;
  background: linear-gradient(135deg, #160C73 0%, #2818B1 52%, #5B4CD8 100%);
}

.cobalt-band h2,
.cobalt-band h3,
.cobalt-band p,
.cobalt-band li {
  color: #FFFFFF;
}

.cobalt-band .eyebrow {
  color: #FFFFFF;
}

.cobalt-band .section-title::after {
  background: #F6C343;
}

.cobalt-band .contact-form h3,
.cobalt-band .contact-form p,
.cobalt-band .contact-form li {
  color: #111827;
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.two-col-info {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(220px, 3fr);
  gap: 34px;
  align-items: center;
}

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

.content-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid #D8DBF4;
  box-shadow: 12px 12px 0 rgba(40, 24, 177, 0.12);
}

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

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.review-card {
  min-height: 270px;
  scroll-snap-align: start;
}

.slider-control {
  width: 48px;
  height: 48px;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.slider-control:hover {
  background: var(--cobalt);
  color: #FFFFFF;
}

.steps-counter {
  color: transparent;
  -webkit-text-stroke: 1px #5B4CD8;
  font-size: 62px;
  font-weight: 950;
  line-height: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #111827;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(40, 24, 177, 0.12);
}

.mobile-sticky-call {
  display: flex !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 0 12px;
  background: #160C73;
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.footer {
  background: #080B1A;
  color: #E5E7EB;
  font-size: 14px;
}

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

.footer .brand-text {
  color: #FFFFFF;
}

.footer h3 {
  color: #FFFFFF;
}

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

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.48); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

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

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

  .mobile-menu-button,
  .mobile-menu,
  .mobile-sticky-call {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 25px;
  }

  .brand-text {
    font-size: 24px;
    max-width: 220px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-badge-img {
    height: 42px;
  }

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

  .two-col-info.reverse > :first-child {
    order: 2;
  }

  .reviews-track {
    grid-auto-columns: 86%;
  }
}
