@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --navy: #0F2A42;
  --teal: #0D9488;
  --teal-lt: #CCFBF1;
  --teal-dk: #0F766E;
  --amber: #F59E0B;
  --amber-lt: #FEF3C7;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-lt: #F1F5F9;
  --gray: #64748B;
  --dark: #0F172A;
  --green: #10B981;
  --green-lt: #D1FAE5;
  --red: #EF4444;
  --border: #E2E8F0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--dark); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
  height: 85px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 75px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--gray-lt); color: var(--teal-dk); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--dark);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 16px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--gray-lt); }
.nav-mobile-phone { display: flex; align-items: center; gap: 8px; color: var(--teal-dk) !important; font-weight: 700 !important; margin-top: 4px; padding-top: 14px !important; border-top: 1px solid var(--border); }
.nav-mobile-phone svg { flex-shrink: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dk); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--teal-dk); }
.nav-phone svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .nav-container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 40px 48px;
}
.footer-brand .footer-logo { height: 75px; width: auto; display: block; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.footer-cta:hover { background: var(--teal-dk); text-decoration: none; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--teal-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: var(--teal-lt); }
.footer-states { display: flex; gap: 8px; margin-top: 4px; }
.footer-state-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-left a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom-left a:hover { color: var(--teal-lt); }
.footer-bottom-right { font-size: 11.5px; color: rgba(255,255,255,0.3); max-width: 480px; text-align: right; line-height: 1.5; }
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 40px 24px 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .footer-bottom-right { text-align: left; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1e293b; color: rgba(255,255,255,0.85);
  padding: 14px 32px; z-index: 200;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.22);
  transform: translateY(100%); transition: transform 0.35s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { flex: 1; min-width: 200px; margin: 0; }
.cookie-banner a { color: #99f6e4; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept { background: #0D9488; color: #fff; border: none; padding: 9px 20px; border-radius: 6px; font-family: var(--sans); font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.cookie-accept:hover { background: #0F766E; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 9px 14px; border-radius: 6px; font-family: var(--sans); font-size: 13px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.75); }
@media (max-width: 560px) {
  .cookie-banner { padding: 14px 16px; gap: 10px; font-size: 12.5px; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ── SHARED HERO UTILITIES ── */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; pointer-events: none; }
.hero-wave svg { display: block; width: 100%; height: 56px; }

.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.breadcrumb a { color: var(--teal-lt); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.hero h1 { font-family: var(--serif); color: var(--white); line-height: 1.15; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-sub { color: rgba(255,255,255,0.7); }

/* ── SHARED SECTION UTILITIES ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ── SHARED LISTING PAGE UTILITIES (State / County) ── */
.main { max-width: 960px; margin: 0 auto; padding: 48px 24px 64px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  color: var(--teal-dk);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.back-link:hover { color: var(--navy); }

.load-more-wrap { text-align: center; margin-bottom: 48px; }
#btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dk);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
#btn-load-more:hover { background: var(--teal-lt); }
#btn-load-more:disabled { opacity: 0.5; cursor: default; }

.content-section { border-top: 1px solid var(--border); padding-top: 40px; margin-top: 8px; }
.content-section h2 { font-family: var(--serif); font-size: clamp(18px, 2.5vw, 24px); color: var(--dark); margin-bottom: 14px; }
.content-section p { font-size: 15px; color: #374151; line-height: 1.75; max-width: 720px; margin-bottom: 14px; }
