:root {
  --primary: #071756;
  --primary-dark: #020824;
  --secondary: #4b5563;
  --accent: #071756;
  --heading: #111827;
  --text: #374151;
  --text-muted: #5b6472;
  --surface: #ffffff;
  --surface-alt: #f4f5f7;
  --surface-dark: #071756;
  --on-dark: #ffffff;
  --on-primary: #ffffff;
  --line: #d7dce5;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.7;
}

body.mobile-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.08;
}

h1 {
  font-size: clamp(39px, 5vw, 64px);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(25px, 3.8vw, 42px);
  letter-spacing: -0.02em;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
}

.logo-link {
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  flex: 0 0 auto;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

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

.desktop-nav a {
  color: #273142;
  font-size: 18px;
  font-weight: 700;
  padding: 26px 8px;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-phone-btn,
.hero-phone-btn,
.section-phone-btn,
.mobile-menu-phone,
.mobile-sticky-call {
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #ffffff !important;
  border: 2px solid var(--primary);
  min-height: 52px;
  padding: 13px 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.62), 0 16px 36px rgba(7, 23, 86, 0.22);
  animation: pulseGlow 2.4s infinite;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-phone-btn:hover,
.hero-phone-btn:hover,
.section-phone-btn:hover,
.mobile-menu-phone:hover,
.mobile-sticky-call:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--heading);
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  content: "";
  position: relative;
}

.mobile-menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.mobile-menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  inset: 82px 0 auto 0;
  z-index: 55;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
}

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

.mobile-menu-panel a:not(.mobile-menu-phone) {
  display: block;
  color: var(--heading);
  font-size: 18px;
  font-weight: 800;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-phone {
  display: inline-flex;
  width: 100%;
  margin-top: 18px;
}

.hero-section {
  min-height: 720px;
  position: relative;
  background-image: linear-gradient(90deg, rgba(2, 8, 36, 0.94) 0%, rgba(7, 23, 86, 0.78) 48%, rgba(7, 23, 86, 0.2) 100%), url("../images/image.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

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

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
  font-weight: 900;
}

.stars {
  display: inline-block;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  letter-spacing: 0.18em;
  font-size: 23px;
}

.hero-gallery-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-gallery-icons img {
  width: auto;
  height: 48px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px;
}

.hero-phone-btn,
.section-phone-btn {
  display: inline-flex;
}

.hero-benefits {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.hero-benefits h3,
.hero-benefits p,
.hero-benefits li {
  color: #ffffff;
}

.glass-benefit {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
}

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

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}

.accent-rule {
  width: 72px;
  height: 4px;
  background: var(--primary);
  margin-top: 18px;
  margin-bottom: 26px;
}

.content-card,
.issue-card,
.service-card,
.review-card,
.faq-card,
.cta-panel {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 0;
}

.content-card h3,
.issue-card h3,
.service-card h3,
.review-card h3,
.faq-card h3 {
  color: var(--heading);
}

.image-frame {
  border: 10px solid #ffffff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.14);
}

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

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(280px, 35%);
  gap: 46px;
  align-items: center;
}

.two-column-section.reverse {
  grid-template-columns: minmax(280px, 35%) minmax(0, 65%);
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  background: #eef1f8;
  color: var(--primary);
  border: 1px solid #cdd4e2;
  flex: 0 0 auto;
}

.line-icon {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
}

.service-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.1);
}

.dark-section {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 34%), #071756;
  color: #ffffff;
}

.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section li,
.dark-section .eyebrow {
  color: #ffffff;
}

.dark-section .content-card,
.dark-section .review-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.dark-section .content-card h3,
.dark-section .review-card h3 {
  color: #ffffff;
}

.zip-pill {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--heading);
  font-weight: 800;
  margin: 4px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  min-height: 100%;
}

.review-stars {
  color: var(--primary);
  letter-spacing: 0.12em;
}

.faq-card button {
  color: var(--heading);
  font-weight: 900;
  width: 100%;
  text-align: left;
}

.faq-answer {
  display: none;
  color: var(--text);
}

.faq-card.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: linear-gradient(135deg, #ffffff 0%, #eef1f8 100%);
  box-shadow: inset 0 0 0 1px rgba(7, 23, 86, 0.05);
}

.footer {
  background: #030715;
  color: #d7dce5;
  font-size: 14px;
}

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

.footer h3,
.footer .brand-name {
  color: #ffffff;
}

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

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex !important;
  width: 100%;
  min-height: 64px;
  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;
}

.bottom-safe-space {
  padding-bottom: 82px;
}

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

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

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55), 0 16px 36px rgba(7, 23, 86, 0.22);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0), 0 16px 36px rgba(7, 23, 86, 0.22);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 16px 36px rgba(7, 23, 86, 0.22);
  }
}

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

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

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

  .bottom-safe-space {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-name {
    font-size: 24px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-panel {
    inset: 72px 0 auto 0;
  }

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

  .hero-gallery-icons img {
    height: 42px;
  }

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

  .two-column-section,
  .two-column-section.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-track {
    grid-template-columns: 1fr;
  }
}
