:root {
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navy: #081960;
  --sky: #73acd7;
  --brass: #c6a15b;
  --ink: #111827;
  --muted: #4b5563;
  --cream: #fbf7ef;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 46%, #fff 100%);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(39px, 8vw, 76px);
}

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

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

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

.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.luxury-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 25, 96, 0.11);
}

.logo-link {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

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

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

.hamburger-button {
  display: inline-flex !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(8, 25, 96, 0.1);
  background: #fff;
}

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

.nav-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--navy);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  background: var(--navy);
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.48), 0 20px 45px rgba(8, 25, 96, 0.28);
  animation: whitePulse 2.8s infinite;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #0d247c;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.12), 0 22px 52px rgba(8, 25, 96, 0.34);
}

.cta-light {
  background: #fff;
  color: #000 !important;
}

.hero-section {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, rgba(8, 25, 96, 0.82), rgba(8, 25, 96, 0.7)), url('../images/hero-kitchen.jpg') center / cover no-repeat;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -92px;
  height: 190px;
  z-index: -1;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

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

.hero-kicker {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.stars {
  color: var(--brass);
  font-size: 28px;
  letter-spacing: 0.18em;
  line-height: 1;
}

.review-badges img {
  width: auto;
  height: 48px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-badge::before {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  background: var(--sky);
}

.heading-rule {
  width: 82px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--sky), var(--brass));
}

.arch-image {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  min-height: 320px;
  box-shadow: 0 28px 75px rgba(8, 25, 96, 0.22);
}

.arch-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.brass-line {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 161, 91, 0.7);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.info-card,
.service-card,
.review-card,
.faq-card {
  background: #fff;
  color: var(--muted);
  border: 1px solid rgba(8, 25, 96, 0.1);
  box-shadow: 0 18px 50px rgba(8, 25, 96, 0.08);
}

.info-card h3,
.service-card h3,
.review-card h3,
.faq-card h3 {
  color: var(--ink);
}

.problem-list li,
.service-card li {
  position: relative;
  padding-left: 1.45rem;
  margin-top: 0.72rem;
}

.problem-list li::before,
.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--sky);
}

.curve-section {
  position: relative;
  overflow: hidden;
}

.curve-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: 80px;
  border: 1px solid rgba(115, 172, 215, 0.32);
  border-radius: 50%;
}

.dark-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band li,
.dark-band strong {
  color: #fff;
}

.dark-band::before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: -110px;
  height: 190px;
  background: #fff;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  background: rgba(115, 172, 215, 0.14);
  color: var(--navy);
  border: 1px solid rgba(115, 172, 215, 0.48);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

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

.review-card {
  scroll-snap-align: start;
}

.carousel-button {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  font-size: 22px;
}

.area-chip {
  display: inline-flex;
  padding: 0.58rem 0.85rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(8, 25, 96, 0.12);
  font-weight: 800;
}

.sticky-call-mobile {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(8, 25, 96, 0.96);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.sticky-call-mobile a {
  width: 100%;
  min-height: 50px;
  background: #fff;
  color: #000 !important;
  font-weight: 900;
  white-space: nowrap;
}

.site-footer {
  background: #050f3b;
  color: #dbeafe;
  font-size: 14px;
}

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

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.footer-disclaimer {
  color: #cbd5e1 !important;
  font-size: 14px;
}

.reveal-card {
  animation: catalogReveal 0.85s ease both;
}

@keyframes catalogReveal {
  from {
    opacity: 0;
    transform: translateY(26px) rotateX(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes whitePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35), 0 20px 45px rgba(8, 25, 96, 0.28); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0), 0 20px 45px rgba(8, 25, 96, 0.28); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 20px 45px rgba(8, 25, 96, 0.28); }
}

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

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

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

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

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

  .site-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(28px, 5.6vw, 53px);
  }

  h2 {
    font-size: clamp(22px, 4.2vw, 36px);
  }

  .section-pad {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

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

  .review-badges {
    gap: 0.45rem;
  }

  .review-badges img {
    height: 38px;
    max-width: 56px;
  }

  body {
    padding-bottom: 82px;
  }
}
