:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --navy: #0A1A34;
  --navy-2: #061020;
  --accent-blue: #7084A7;
  --ink: #111827;
  --body: #374151;
  --muted: #6B7280;
  --paper: #FFFFFF;
  --mist: #F5F7FB;
}

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

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

h1 { font-size: 39px; }
h2 { font-size: 31px; }
h3, h4 { font-size: 22px; }
p, li, a, button, input, textarea { font-size: 16px; }

@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 44px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 26, 52, .98);
  border-bottom: 1px solid rgba(112, 132, 167, .35);
}

.brand-link { color: #fff; text-decoration: none; }
.brand-text { color: #fff; font-size: 24px; }
.brand-icon { width: 44px; height: 44px; display: block; }

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

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .desktop-phone { display: inline-flex !important; }
  .mobile-menu-button, .mobile-menu-panel { display: none !important; }
}

.nav-link {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
}

.nav-link:hover { color: #fff; }

.phone-button,
.cta-button {
  border-radius: 0 !important;
  background: var(--accent-blue);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.38);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,255,255,.42);
  animation: whitePulse 2.2s infinite;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.phone-button:hover,
.cta-button:hover {
  background: #8799B9;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255,255,255,.42);
}

@keyframes whitePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.38); }
  70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.mobile-menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  inset: 70px 0 auto 0;
  z-index: 70;
  background: var(--navy);
  border-top: 1px solid rgba(112,132,167,.35);
  padding: 1rem;
}

.mobile-menu-panel.is-open { display: block; }
.mobile-menu-panel a { color: #fff; text-decoration: none; }

.hero-section {
  min-height: 760px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section h1,
.hero-section p,
.hero-section .eyebrow { color: #fff; }
.hero-section h1 { max-width: 780px; }
.hero-section p { max-width: 720px; }

.stars {
  color: var(--accent-blue);
  font-size: 30px;
  letter-spacing: .22em;
  text-shadow: 0 0 20px rgba(112,132,167,.72);
}

.hero-gallery-icon {
  width: auto;
  height: 48px;
  max-width: 96px;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.36);
  padding: 6px 12px;
  background: rgba(255,255,255,.08);
}

.hero-benefits {
  background: rgba(255,255,255,.12);
  border: 3px double rgba(255,255,255,.48);
  color: #fff;
  backdrop-filter: blur(10px);
}

.crest-box {
  border: 3px double rgba(112,132,167,.55);
  background: #87919c;
  position: relative;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

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

.section-dark .muted-on-dark { color: rgba(255,255,255,.74); }

.accent-rule {
  width: 64px;
  height: 4px;
  background: var(--accent-blue);
  margin-top: 14px;
}

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

@media (min-width: 768px) {
  .section-shell { padding: 92px 0; }
}

.two-column-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 3px double var(--accent-blue);
}

.info-list li { margin-bottom: .75rem; }

.service-card {
  border: 1px solid #D8DEE9;
  background: #fff;
  color: var(--body);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-radius: 0;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: 0 18px 40px rgba(10,26,52,.12);
}

.service-card h3,
.service-card p,
.service-card li { color: var(--body); }
.service-card h3 { color: var(--ink); }

.icon-frame {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px double var(--accent-blue);
  color: var(--navy);
  background: #F7F9FC;
}

.icon-frame svg { width: 32px; height: 32px; }

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #122A50 100%);
  border-top: 4px double var(--accent-blue);
  border-bottom: 4px double var(--accent-blue);
}

.process-step {
  background: #fff;
  border-left: 5px solid var(--accent-blue);
  color: var(--body);
}

.review-window { overflow: hidden; }
.review-track { display: flex; transition: transform .45s ease; }
.review-slide { min-width: 100%; padding: .75rem; }

@media (min-width: 768px) {
  .review-slide { min-width: 33.333333%; }
}

.review-card {
  height: 100%;
  background: #fff;
  color: var(--body);
  border: 1px solid #D8DEE9;
  border-top: 5px solid var(--accent-blue);
}

.review-card strong { color: var(--ink); }
.review-card p { color: var(--body); }

.slider-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--accent-blue);
  background: var(--navy);
  color: #fff;
  border-radius: 0;
}

.area-pill {
  border: 1px solid rgba(112,132,167,.55);
  background: rgba(112,132,167,.12);
  color: #fff;
}

.faq-item {
  border: 1px solid #D8DEE9;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  background: #061020;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li { font-size: 14px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer h3, .site-footer .brand-text { color: #fff; }

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

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

.mobile-sticky-call a {
  width: 100%;
  min-height: 52px;
  color: #fff !important;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible { display: none !important; }
}

@media (max-width: 767px) {
  body { padding-bottom: 76px; }
  .hero-section { min-height: 820px; }
  .stars { font-size: 24px; letter-spacing: .16em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
