/* ============================================================
   Cape Coral Septic Pumping — static site styles
   ============================================================ */
:root {
  --navy-50: #EEF5FB;
  --navy-100: #D8E9F5;
  --navy-200: #B0D1E8;
  --navy-300: #7FB2D6;
  --navy-500: #2C6AA0;
  --navy-600: #1E4E7E;
  --navy-700: #16395D;
  --navy-800: #0F2A46;
  --navy-900: #0A1C30;
  --navy-950: #060F1C;
  --amber-50: #FFF8E6;
  --amber-300: #FCD34D;
  --amber-400: #FBBF24;
  --amber-500: #F59E0B;
  --amber-600: #D97706;
  --white: #ffffff;
  --font-display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --radius: 14px;
  --shadow-card: 0 20px 50px -20px rgba(6, 15, 28, 0.35);
  --shadow-glow: 0 0 40px -8px rgba(245, 158, 11, 0.5);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; list-style: none; }
::selection { background: var(--amber-500); color: var(--navy-950); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--navy-950); }
h3 { font-size: 1.25rem; font-weight: 800; }

.container { max-width: 80rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-amber { color: var(--amber-400); }
.text-amber { color: var(--amber-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.btn:hover { transform: scale(1.03); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; border-radius: 16px; }
.btn-block { width: 100%; }
.btn-amber { background: var(--amber-500); color: var(--navy-950); box-shadow: var(--shadow-glow); }
.btn-amber:hover { background: var(--amber-400); }
.btn-navy { background: var(--navy-950); color: var(--white); }
.btn-navy:hover { background: var(--navy-900); }
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--navy-100);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 12px 32px -18px rgba(6, 15, 28, 0.35);
}
.topbar { display: none; border-bottom: 1px solid var(--navy-100); }
@media (min-width: 1024px) { .topbar { display: block; } }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.45rem;
  font-size: 0.75rem;
  color: var(--navy-700);
}
.topbar-left { display: flex; gap: 1.25rem; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-right { color: var(--navy-600); }

.pulse-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--amber-400);
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amber-400);
  animation: pulse-ring 1.6s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  padding-block: 0;
}
.logo { display: inline-flex; align-items: center; gap: 0.65rem; }
.site-header .logo { flex: 0 0 auto; }
.brand-logo {
  display: block;
  width: clamp(5.5rem, 7vw, 6rem);
  height: auto;
}

.nav-links { display: none; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-800);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--amber-50); color: var(--navy-950); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-call { display: none; }
@media (min-width: 640px) { .btn-call { display: inline-flex; } }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--navy-950);
  cursor: pointer;
}
.menu-toggle:hover { background: var(--navy-50); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(6, 15, 28, 0.6);
  backdrop-filter: blur(4px);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  border-left: 1px solid var(--navy-100);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: slide-in 0.25s var(--ease-out);
}
@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-brand-logo { display: block; width: 7.5rem; height: auto; }
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--navy-950);
  cursor: pointer;
}
.menu-close:hover { background: var(--navy-50); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu-links a {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  transition: background 0.2s;
}
.mobile-menu-links a:hover { background: var(--amber-50); }
.mobile-menu .btn-block { margin-top: auto; }
.mobile-menu-note { text-align: center; font-size: 0.75rem; color: var(--navy-600); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - 5rem);
  background: var(--navy-950);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-950) 0%, rgba(6, 15, 28, 0.75) 55%, rgba(6, 15, 28, 0.2) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-950) 0%, transparent 40%, rgba(6, 15, 28, 0.4) 100%);
}
.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .hero { min-height: calc(100svh - 7rem); }
}
.hero-content { max-width: 46rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-100);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.02;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-400);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.08em;
  border-radius: 999px;
  background: var(--amber-500);
  opacity: 0.55;
}
.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--navy-100);
}
.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; } }
.hero-trust {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--navy-200);
}

.hero-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
@media (min-width: 1024px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: rgba(6, 15, 28, 0.6); padding: 1.25rem 1.5rem; }
.stat-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: var(--amber-400); line-height: 1; }
.stat-label { margin-top: 0.35rem; font-size: 0.9rem; font-weight: 600; color: var(--white); }
.stat-note { font-size: 0.75rem; color: var(--navy-300); }

/* ---------- Emergency banner ---------- */
.emergency-banner { background: var(--amber-500); }
.emergency-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-block: 1rem;
}
@media (min-width: 768px) { .emergency-inner { flex-direction: row; justify-content: space-between; } }
.emergency-text { display: flex; align-items: center; gap: 0.75rem; }
.emergency-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--amber-400);
  flex-shrink: 0;
}
.emergency-text p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-950);
  text-align: center;
}
@media (min-width: 768px) { .emergency-text p { font-size: 1.15rem; text-align: left; } }

/* ---------- Sections (shared) ---------- */
.section { padding-block: 5rem; }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--amber-600);
}
.eyebrow--amber { color: var(--amber-400); }
.section h2 { margin-top: 0.75rem; }
.section-lead {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--navy-600);
}
.section-lead--light { color: var(--navy-200); }
.section-head { max-width: 42rem; margin-inline: auto; text-align: center; }

.grid-2 {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ---------- Pump-out ---------- */
.pumpout { position: relative; overflow: hidden; background: var(--white); }
.pumpout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 28, 48, 0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.4;
}
.pumpout > .container { position: relative; }
.pumpout-media { position: relative; }
.pumpout-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  max-width: 260px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .float-card { right: -1.5rem; } }
.float-card-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: var(--navy-900); }
.float-card p { margin-top: 0.25rem; font-size: 0.85rem; line-height: 1.45; color: var(--navy-600); }

.check-list { margin-top: 2rem; display: grid; gap: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--navy-100);
  border-radius: 16px;
  background: rgba(238, 245, 251, 0.6);
  font-weight: 500;
  color: var(--navy-800);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--amber-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23060F1C' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
}
.text-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
}
.text-link .icon { color: var(--amber-500); transition: transform 0.2s var(--ease-out); }
.text-link:hover .icon { transform: translateX(6px); }

.steps-grid {
  margin-top: 6rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--navy-100);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-card); }
.step-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.step-card:hover::after { transform: scaleX(1); }
.step-number {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--navy-100);
  transition: color 0.3s;
  line-height: 1;
}
.step-card:hover .step-number { color: var(--amber-300); }
.step-card h3 { margin-top: 0.75rem; color: var(--navy-950); }
.step-card p { margin-top: 0.5rem; color: var(--navy-600); }

/* ---------- Services ---------- */
.services { background: rgba(238, 245, 251, 0.5); }
.services-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--navy-100);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber-300);
  box-shadow: var(--shadow-card);
}
.service-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: var(--navy-900);
  color: var(--amber-400);
  transition: background 0.3s, color 0.3s;
}
.service-icon svg { width: 1.75rem; height: 1.75rem; }
.service-card:hover .service-icon { background: var(--amber-500); color: var(--navy-950); }
.service-icon--amber, .service-card--emergency .service-icon { background: var(--amber-500); color: var(--navy-950); }
.service-card h3 { margin-top: 1.25rem; color: var(--navy-950); }
.service-card p { margin-top: 0.5rem; flex: 1; color: var(--navy-600); }
.service-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
}
.service-cta .icon { color: var(--amber-500); }

/* ---------- UEP ---------- */
.uep {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}
.uep::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(127, 178, 214, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 178, 214, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
.uep::after {
  content: '';
  position: absolute;
  top: 33%;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  filter: blur(120px);
}
.uep > .container { position: relative; z-index: 1; }
.uep-grid { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .uep-grid { grid-template-columns: 1fr 1.15fr; gap: 5rem; } }
.uep h2 { color: var(--white); }
.uep-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber-300);
}
.uep h2 { margin-top: 1.25rem; }
.uep-roles { margin-top: 2.25rem; display: grid; gap: 1rem; }
.uep-role {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.uep-role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--navy-700);
  color: var(--amber-400);
  flex-shrink: 0;
}
.uep-role-icon svg { width: 1.4rem; height: 1.4rem; }
.uep-role-icon--amber { background: var(--amber-500); color: var(--navy-950); }
.uep-role h3 { font-size: 1rem; color: var(--white); }
.uep-role p { margin-top: 0.25rem; font-size: 0.9rem; color: var(--navy-200); }
.uep-note {
  margin-top: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--navy-700);
  border-radius: 16px;
  background: rgba(10, 28, 48, 0.6);
  font-size: 0.88rem;
  color: var(--navy-300);
}
.uep-note .icon { margin-top: 0.15rem; color: var(--amber-400); }

.uep-timeline { display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.clock-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
}
.clock-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-300);
}
.clock-number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.clock-number.text-amber { color: var(--amber-400); }
.clock-title { margin-top: 0.25rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--white); }
.clock-card p { margin-top: 0.75rem; max-width: 24rem; color: var(--navy-200); }
.clock-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-300);
}
.clock-divider > span:nth-child(2) { display: inline-flex; align-items: center; gap: 0.5rem; }
.clock-line { width: 2.5rem; height: 1px; background: var(--navy-600); }
@media (min-width: 640px) { .clock-line { width: 4rem; } }

/* ---------- Quotes ---------- */
.quotes { background: var(--white); }
.quotes-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quotes-grid { grid-template-columns: repeat(4, 1fr); } }
.quote-card {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--navy-100);
  border-radius: 24px;
  background: rgba(238, 245, 251, 0.5);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-300);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--amber-400);
}
.quote-icon svg { width: 1.5rem; height: 1.5rem; }
.quote-card h3 { margin-top: 1.1rem; font-size: 1.1rem; color: var(--navy-950); }
.quote-card p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--navy-600); }
.quotes-cta {
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.quotes-cta p { font-size: 0.9rem; color: var(--navy-500, #5b7290); }


/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 2.75rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(6, 15, 28, 0.88), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.gallery-tag {
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Service area ---------- */
.area {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}
.area-bg { position: absolute; inset: 0; }
.area-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.area-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy-950) 0%, rgba(6, 15, 28, 0.7) 50%, var(--navy-950) 100%);
}
.area > .container { position: relative; z-index: 1; }
.area h2 { color: var(--white); }
.area-head { max-width: 42rem; }
.area-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(6, 15, 28, 0.7);
  backdrop-filter: blur(10px);
}
.area-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  color: var(--white);
}
.area-card--amber { border-color: rgba(251, 191, 36, 0.25); background: rgba(251, 191, 36, 0.1); }
.area-card--amber h3 { color: var(--amber-300); }
.chips { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-100);
}
.zips { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
.zip {
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  background: rgba(6, 15, 28, 0.7);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}
.area-card-note { margin-top: 1rem; font-size: 0.85rem; color: rgba(252, 211, 77, 0.8); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 0.8fr 1.4fr; gap: 5rem; } }
.faq-intro { align-self: start; }
@media (min-width: 1024px) { .faq-intro { position: sticky; top: 8rem; } }
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: var(--amber-500);
  color: var(--navy-950);
}
.faq-icon svg { width: 1.75rem; height: 1.75rem; }
.faq-intro h2 { margin-top: 1.25rem; }
.faq-list { display: grid; gap: 1rem; }
.faq-item {
  border: 1px solid var(--navy-100);
  border-radius: 16px;
  background: rgba(238, 245, 251, 0.4);
  padding: 0 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] { border-color: var(--amber-300); background: rgba(251, 191, 36, 0.08); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1C30' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding-bottom: 1.5rem; color: var(--navy-600); line-height: 1.7; }

/* ---------- Schedule / contact ---------- */
.schedule {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}
.schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(127, 178, 214, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 178, 214, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
.schedule::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  filter: blur(120px);
}
.schedule > .container { position: relative; z-index: 1; }
.schedule-grid { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .schedule-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.schedule h2 { color: var(--white); }

.call-card {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 24px;
  background: rgba(251, 191, 36, 0.1);
  transition: background 0.2s;
}
.call-card:hover { background: rgba(251, 191, 36, 0.15); }
.call-card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: var(--amber-500);
  color: var(--navy-950);
  flex-shrink: 0;
}
.call-card-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--amber-500);
  animation: pulse-ring 1.6s var(--ease-out) infinite;
}
.call-card-icon svg { position: relative; width: 1.5rem; height: 1.5rem; }
.call-card-note { display: block; font-size: 0.85rem; font-weight: 600; color: var(--amber-300); }
.call-card-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
}

.info-cards { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .info-cards { grid-template-columns: 1fr 1fr; } }
.info-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.info-card h3 { margin-top: 0.65rem; font-size: 1rem; color: var(--white); }
.info-card p { margin-top: 0.25rem; font-size: 0.88rem; color: var(--navy-200); }

.ready-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.ready-card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1rem; color: var(--white); }
.ready-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 640px) { .ready-card ul { grid-template-columns: 1fr 1fr; } }
.ready-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--navy-100); }
.ready-card li::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber-400);
  flex-shrink: 0;
}

/* ---------- Form ---------- */
.form-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .form-card { padding: 2.5rem; } }
.form-card h3 { font-size: 1.6rem; color: var(--navy-950); }
.form-note { margin-top: 0.25rem; font-size: 0.9rem; color: var(--navy-600); }
#scheduleForm { display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 0.45rem; }
.form-field label { font-size: 0.92rem; font-weight: 600; color: var(--navy-800); }
.label-optional { font-weight: 400; color: var(--navy-300); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--navy-200);
  border-radius: 12px;
  background: var(--white);
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input,
.form-field select { height: 3rem; }
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}
.form-field input.error,
.form-field select.error { border-color: #dc2626; }
.form-fineprint { text-align: center; font-size: 0.75rem; color: var(--navy-300); }

.form-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}
.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--amber-600);
}
.form-success-icon svg { width: 2.5rem; height: 2.5rem; }
.form-success h3 { margin-top: 1.5rem; }
.form-success p { margin-top: 0.75rem; max-width: 24rem; color: var(--navy-600); }
.form-success a { font-weight: 700; color: var(--navy-900); text-decoration: underline; text-decoration-color: var(--amber-400); text-decoration-thickness: 2px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-blurb { margin-top: 1.25rem; max-width: 20rem; font-size: 0.9rem; color: var(--navy-300); }
.footer-brand-logo {
  display: block;
  width: 12rem;
  height: auto;
  border-radius: 12px;
  background: var(--white);
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-400);
}
.site-footer ul { margin-top: 1.25rem; display: grid; gap: 0.65rem; }
.site-footer ul a { font-size: 0.9rem; color: var(--navy-200); transition: color 0.2s; }
.site-footer ul a:hover { color: var(--amber-300); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--navy-200); }
.footer-contact .icon { margin-top: 0.2rem; }
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-weight: 800;
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-phone:hover { color: var(--amber-300) !important; }
.footer-disclosure {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--navy-300);
}
.footer-disclosure p { max-width: 96ch; }
.footer-disclosure p + p { margin-top: 0.5rem; }
.footer-bottom {
  margin-top: 1.5rem;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--navy-300);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ---------- Floating call button ---------- */
.floating-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s var(--ease-out);
}
.floating-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amber-500);
  animation: pulse-ring 1.6s var(--ease-out) infinite;
}
.floating-call .icon { position: relative; width: 1.6rem; height: 1.6rem; }
.floating-call:hover { transform: scale(1.06); }
@media (min-width: 640px) { .floating-call { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Subpage hero ---------- */
.page-hero {
  position: relative;
  background: var(--navy-950);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(127, 178, 214, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 178, 214, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  filter: blur(120px);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 52rem; }
.page-hero .lead {
  margin-top: 1.25rem;
  max-width: 46rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy-100);
}
.page-hero .hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.page-hero .eyebrow { display: block; margin-bottom: 0.85rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--navy-300);
  list-style: none;
}
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: var(--navy-600); }
.breadcrumb a { color: var(--navy-200); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber-300); }
.breadcrumb [aria-current] { color: var(--amber-400); font-weight: 600; }

/* ---------- Rich content ---------- */
.rich h2 { margin-top: 3rem; font-size: clamp(1.55rem, 3vw, 2.1rem); color: var(--navy-950); }
.rich > h2:first-child { margin-top: 0; }
.rich h3 { margin-top: 2rem; font-size: 1.25rem; color: var(--navy-950); }
.rich p { margin-top: 1rem; color: var(--navy-600); line-height: 1.75; }
.rich strong { color: var(--navy-800); }
.rich ul.bullets { margin-top: 1.25rem; display: grid; gap: 0.6rem; }
.rich ul.bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy-600);
  line-height: 1.7;
}
.rich ul.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--amber-500);
}
.rich ul.bullets li strong { color: var(--navy-800); }
.section .rich { max-width: 56rem; margin-top: 4rem; }
.faq-rich .faq-list { margin-top: 1.5rem; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 0.95fr 1.05fr; gap: 4.5rem; }
  .split.reverse > .split-media { order: 2; }
}
.split-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split h2 { color: var(--navy-950); }

/* ---------- Values grid (about) ---------- */
.values-grid {
  margin-top: 4.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  margin-top: 5rem;
  padding: 3.5rem 2rem;
  border-radius: 28px;
  background: var(--navy-950);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(127, 178, 214, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 178, 214, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { margin-top: 1rem; color: var(--navy-200); }
.cta-band .actions { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.cta-band .cta-note { margin-top: 1.25rem; font-size: 0.9rem; color: var(--navy-300); }

/* ---------- Related services ---------- */
.related { margin-top: 5rem; }
.related h2 { color: var(--navy-950); }
.related-grid { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--navy-100);
  border-radius: 16px;
  background: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber-300);
  box-shadow: var(--shadow-card);
}
.related-card .icon { color: var(--amber-500); flex-shrink: 0; }

/* ---------- Hub grid ---------- */
.hub-grid { margin-top: 0; }

/* ---------- Active nav ---------- */
.nav-links a.active { color: var(--amber-600); background: var(--amber-50); }

/* ---------- UEP guide link ---------- */
.uep-guide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--amber-400);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(251, 191, 36, 0.4);
  transition: color 0.2s;
}
.uep-guide-link:hover { color: var(--amber-300); }

/* ---------- Coverage map ---------- */
.map-section { background: var(--white); padding-top: 5rem; }
.map-frame {
  margin-top: 3rem;
  border: 1px solid var(--navy-100);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
@media (min-width: 1024px) { .map-frame iframe { height: 460px; } }

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
  background: var(--navy-50);
  transition: background 0.2s;
}
.map-link:hover { background: var(--navy-100); }
.map-link .icon { color: var(--amber-500); }


/* ---------- Canonical content pages ---------- */
.legacy-content { max-width: 62rem; }
.legacy-content .lede { font-size: 1.15rem; color: var(--navy-800); }
.legacy-content a { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--amber-400); text-underline-offset: 3px; }
.legacy-content ul:not(.bullets), .legacy-content ol { margin-top: 1rem; padding-left: 1.4rem; color: var(--navy-600); }
.legacy-content ul:not(.bullets) { list-style: disc; }
.legacy-content ol { list-style: decimal; }
.legacy-content li { margin-top: 0.5rem; line-height: 1.7; }
.legacy-content figure { margin-top: 2rem; }
.legacy-content figure img { width: 100%; max-height: 34rem; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-card); }
.legacy-content figcaption { margin-top: 0.65rem; color: var(--navy-600); font-size: 0.86rem; }
.legacy-content .fine-print { padding: 1rem 1.15rem; border-left: 3px solid var(--amber-400); background: var(--amber-50); font-size: 0.88rem; }
.legacy-content table { width: 100%; margin-top: 1.5rem; border-collapse: collapse; }
.legacy-content th, .legacy-content td { padding: 0.85rem; border: 1px solid var(--navy-100); text-align: left; vertical-align: top; }
.legacy-content th { color: var(--navy-950); background: var(--navy-50); }
.location-pages { margin-top: 4rem; }
.location-pages > p:not(.eyebrow) { margin-top: 1rem; max-width: 48rem; color: var(--navy-600); }
.location-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.guide-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.guide-card { overflow: hidden; border: 1px solid var(--navy-100); border-radius: 22px; background: var(--white); box-shadow: 0 18px 44px -30px rgba(6, 15, 28, 0.45); text-decoration: none !important; }
.guide-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.guide-card > div { padding: 1.5rem; }
.guide-card h2 { margin-top: 0.55rem; font-size: 1.55rem; }
.guide-card p:not(.eyebrow) { margin-top: 0.8rem; }
.guide-card .service-cta { margin-top: 1rem; display: inline-flex; color: var(--amber-600); font-weight: 800; }


/* ---------- SEO guide expansion ---------- */
.guide-hub-intro { max-width: 52rem; margin-bottom: 2.5rem; }
.guide-hub-intro h2 { margin-top: 0.6rem; }
.guide-hub-intro > p:last-child { margin-top: 1rem; color: var(--navy-600); font-size: 1.05rem; }
.guide-grid--full { margin-top: 0; }
@media (min-width: 1100px) { .guide-grid--full { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.guide-grid--full .guide-card h2 { font-size: 1.35rem; }
.guide-grid--full .guide-card p:not(.eyebrow) { font-size: 0.95rem; }
.guide-layout { max-width: 72rem; }
.guide-article { max-width: 62rem; margin-inline: auto; }
.guide-lead-image { margin: 0 0 2.5rem !important; }
.guide-lead-image img { aspect-ratio: 16 / 9; max-height: 34rem; }
.guide-article .post-meta { margin: 0 0 1.5rem; padding: 0 0 1rem; border-bottom: 1px solid var(--navy-100); color: var(--navy-600); font-size: 0.9rem; }
.guide-article ol { margin-top: 1rem; padding-left: 1.4rem; color: var(--navy-600); list-style: decimal; }
.source-box { margin-top: 3.5rem; padding: 1.5rem; border: 1px solid var(--navy-100); border-radius: 18px; background: var(--navy-50); }
.source-box .source-kicker { margin: 0; color: var(--amber-600); font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.source-box h2 { margin-top: 0.55rem; font-size: 1.45rem; }
.source-box p { font-size: 0.92rem; }
.source-box ul { margin-top: 1rem; }
.source-box li + li { margin-top: 0.55rem; }
.source-box a { font-weight: 700; }
.guide-related { max-width: 62rem; margin-inline: auto; }
