* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B2A4A;
  --navy-dark: #071B31;
  --coral: #FF6B4A;
  --coral-dark: #E24E2E;
  --sand: #F5EFE4;
  --cream: #FFFCF7;
  --charcoal: #23303D;
}

body {
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
}
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -0.01em; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 150ms ease, transform 150ms ease;
}
.btn-primary { background: var(--coral); color: var(--cream); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-onlight { background: var(--navy); color: var(--cream); }
.btn-onlight:hover { background: var(--navy-dark); }
.btn-ghost { border: 2px solid var(--navy); color: var(--navy); }
.btn-ghost:hover { background: rgba(11,42,74,0.06); }
.btn-ghost-onlight { border: 2px solid var(--cream); color: var(--cream); }
.btn-ghost-onlight:hover { background: rgba(255,252,247,0.1); }

.nav { background: var(--cream); border-bottom: 1px solid rgba(11,42,74,0.08); padding: 18px 0; }
.nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.logo { font-family: "Figtree", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.01em; color: var(--navy); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  opacity: 0.75;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { opacity: 1; border-bottom-color: var(--coral); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--coral-dark); font-weight: 700; font-size: 14px; white-space: nowrap; }

.hero { background: var(--navy); padding: 96px 24px 88px; text-align: center; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,107,74,0.12) 0%, rgba(11,42,74,0) 40%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--cream); margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: var(--cream); opacity: 0.85; line-height: 1.6; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.trust-strip {
  background: var(--sand); color: var(--navy);
  text-align: center; padding: 14px 24px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  flex-wrap: wrap;
}
.bullet { opacity: 0.4; }

.section { max-width: 1140px; margin: 0 auto; padding: 72px 24px; }
.section h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 12px; }
.label { font-family: "Figtree", sans-serif; font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--coral-dark); margin-bottom: 10px; }

.service-rows { margin-top: 8px; }
.service-row { display: grid; grid-template-columns: 1fr 200px 2fr; gap: 24px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid rgba(11,42,74,0.1); }
.service-row:first-child { border-top: 1px solid rgba(11,42,74,0.1); }
.service-row h3 { font-size: 1.25rem; }
.service-price { font-weight: 700; color: var(--coral-dark); font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; }
.service-desc { font-size: 14.5px; color: var(--charcoal); opacity: 0.85; line-height: 1.55; }
@media (max-width: 640px) { .service-row { grid-template-columns: 1fr; gap: 4px; } }

.section-navy { background: var(--navy); }
.h-onlight { color: var(--cream); }
.section-sub-onlight { color: var(--cream); opacity: 0.75; margin-bottom: 28px; max-width: 560px; }

.cta-band { background: var(--coral); text-align: center; padding: 64px 24px; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: var(--cream); opacity: 0.9; margin-bottom: 24px; }

.footer { padding: 40px 24px; text-align: center; color: var(--charcoal); opacity: 0.7; font-size: 13px; }
.footer-note { margin-top: 6px; font-size: 11.5px; opacity: 0.7; }

@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- Nav dropdowns ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 8px 0;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--cream);
  opacity: 0.85;
  border-bottom: none;
}
.nav-dropdown a:hover { opacity: 1; background: rgba(255,255,255,0.08); border-bottom-color: transparent; }

/* ---------- Floating call button ---------- */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(11,42,74,0.35);
}
.floating-call:hover { background: var(--coral-dark); }
.floating-call svg { flex-shrink: 0; }
@media (max-width: 640px) { .floating-call span { display: none; } .floating-call { padding: 16px; } }

/* ---------- Location sidebar (persistent, right-anchored) ---------- */
.city-sidebar {
  display: none;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  background: var(--navy);
  border-radius: 8px;
  padding: 14px 16px;
  width: 150px;
  box-shadow: 0 8px 24px rgba(11,42,74,0.3);
}
.city-sidebar .city-sidebar-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  margin-bottom: 10px;
}
.city-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.city-sidebar a { color: var(--cream); font-size: 12px; font-weight: 600; opacity: 0.85; }
.city-sidebar a:hover { opacity: 1; color: var(--coral); }
.city-sidebar .city-soon { color: var(--cream); opacity: 0.4; font-size: 11.5px; font-style: italic; }
@media (min-width: 1100px) {
  body { padding-right: 190px; }
  .city-sidebar { display: block; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { max-width: 1140px; margin: 0 auto; padding: 18px 24px 0; font-size: 12.5px; color: var(--charcoal); opacity: 0.6; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { opacity: 0.8; }

/* ---------- Location hero (static bg) ---------- */
.loc-hero { background: var(--navy); background-size: cover; background-position: center; position: relative; }
.loc-hero .hero-inner { max-width: 780px; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.loc-card { border-radius: 4px; padding: 24px; }
.loc-card h3 { margin-bottom: 4px; }
.loc-card p { font-size: 14px; opacity: 0.8; line-height: 1.55; }
.loc-tag { font-weight: 700; opacity: 0.95 !important; margin-bottom: 10px; font-size: 13.5px; }

/* ---------- Process steps ---------- */
.process-steps { margin-top: 8px; }
.process-step { display: flex; gap: 22px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.process-step:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.process-step-num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
}
.process-step h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 4px; }
.process-step p { color: var(--cream); opacity: 0.75; font-size: 14.5px; line-height: 1.6; max-width: 560px; margin: 0; }

/* ---------- Callout box ---------- */
.callout-box { background: var(--sand); border-left: 4px solid var(--coral); border-radius: 4px; padding: 26px 28px; margin-top: 28px; max-width: 680px; }
.callout-box h3 { font-size: 1.05rem; margin-bottom: 8px; }
.callout-box p { font-size: 14.5px; color: var(--charcoal); opacity: 0.85; line-height: 1.6; margin: 0; }
.callout-box ol { margin: 10px 0 0 20px; padding: 0; font-size: 14.5px; color: var(--charcoal); opacity: 0.85; line-height: 1.7; }

/* ---------- Why grid ---------- */
.why-grid { margin-top: 8px; }
.why-item { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.why-item h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 6px; }
.why-item p { color: var(--cream); opacity: 0.75; font-size: 14.5px; line-height: 1.6; max-width: 620px; }

/* ---------- Reviews ---------- */
.placeholder-note { color: var(--coral-dark); font-size: 13px; margin-bottom: 28px; font-style: italic; }
.review-card { background: var(--sand); border-radius: 4px; padding: 24px; }
.review-quote { font-size: 15px; color: var(--charcoal); line-height: 1.6; }

/* ---------- Footer sitemap ---------- */
.footer-sitemap { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 1140px; margin: 0 auto 16px; padding: 0 24px; }
.footer-sitemap a {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--charcoal); opacity: 0.7;
}
.footer-sitemap a:hover { opacity: 1; }
