
:root {
  --ink: #16303a;
  --ink-2: #24505f;
  --aqua: #4fc0c7;
  --aqua-dark: #2fa3ab;
  --aqua-pale: #ddf3f4;
  --blush: #ff9c8a;
  --blush-pale: #ffe8e2;
  --bg: #f7fafa;
  --card: #ffffff;
  --line: #e0ecec;
  --muted: #5d7a83;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(22,48,58,.05), 0 8px 24px -12px rgba(22,48,58,.20);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6; }
h1, h2, h3, .logo { font-family: "Outfit", -apple-system, sans-serif; line-height: 1.15; }
a { color: #14707c; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -9999px; background: #fff; padding: 10px 16px; z-index: 99; }
.skip:focus { left: 8px; top: 8px; }

.site-header { background: var(--ink); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo-img { height: 40px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img { height: 32px; } }

.logo { font-weight: 500; font-size: 1.22rem; color: #fff; letter-spacing: -.02em; white-space: nowrap; }
.logo span { font-weight: 800; }
.logo .tld { font-weight: 500; color: #86a8b0; font-size: .95rem; }
.logo .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua); margin: 0 1px 0 2px; }
.logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: #c6dcdf; font-size: .93rem; font-weight: 500; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: var(--aqua); color: var(--ink) !important; padding: 8px 16px;
  border-radius: 99px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--aqua-dark); }
@media (max-width: 820px) { .nav-links a:not(.nav-cta) { display: none; } .logo { font-size: 1.05rem; } }

.hero { background: linear-gradient(140deg, var(--ink) 0%, #1d4d5c 55%, #2a7d88 100%);
  color: #fff; padding: 72px 0 76px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -130px; top: -130px; width: 440px; height: 440px;
  border-radius: 50%; border: 64px solid rgba(79,192,199,.13); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700;
  color: var(--aqua); margin-bottom: 10px; }
.hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 800; max-width: 700px; }
.hero h1 em { font-style: normal; color: var(--aqua); }
.lede { margin: 18px 0 28px; max-width: 600px; color: #c2dade; font-size: 1.06rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 38px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14); position: relative; z-index: 1; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-family: "Outfit", sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-stats span { font-size: .84rem; color: #a5c4ca; }
.btn { display: inline-block; padding: 13px 24px; border-radius: 99px; font-weight: 700;
  font-size: .98rem; border: 0; cursor: pointer; }
.btn:hover { text-decoration: none; }
.btn-aqua { background: var(--aqua); color: var(--ink); }
.btn-aqua:hover { background: var(--aqua-dark); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: var(--aqua); color: var(--aqua); }
.btn-navy { background: var(--ink); color: #fff; }
.btn-navy:hover { background: var(--ink-2); }

.section { padding: 56px 0; }
.section-tint { background: #eaf5f5; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.section-head p { color: var(--muted); max-width: 720px; }

.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px 20px; box-shadow: var(--shadow); margin-bottom: 18px; }
.filter-row { display: flex; gap: 14px; align-items: flex-start; padding: 8px 0; }
.filter-row + .filter-row { border-top: 1px solid var(--line); }
.filter-label { flex: 0 0 74px; padding-top: 8px; font-size: .74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.searchbox { flex: 1; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 99px;
  font: inherit; background: #fff; }
.searchbox:focus { outline: 2px solid var(--aqua-dark); border-color: var(--aqua-dark); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips-city { max-height: 128px; overflow-y: auto; }
.chip, .toggle { padding: 7px 15px; border-radius: 99px; border: 1.5px solid var(--line);
  background: #fff; font-size: .88rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer; font-family: inherit; }
.chip b, .toggle b { color: var(--muted); font-weight: 600; }
.chip:hover, .toggle:hover { border-color: var(--aqua-dark); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.active b { color: var(--aqua); }
.toggle.active { background: var(--blush); border-color: var(--blush); color: #4a1d13; }
.linkish { background: none; border: 0; color: #14707c; font: inherit; font-size: .88rem;
  font-weight: 600; cursor: pointer; padding: 7px 6px; text-decoration: underline; }
.result-count { color: var(--muted); font-size: .9rem; margin-bottom: 16px; font-weight: 600; }
.no-results { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center; color: var(--muted); margin-top: 18px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 20px; }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); color: inherit;
  transition: transform .15s ease, box-shadow .15s ease; display: block; }
.card:hover { transform: translateY(-3px); text-decoration: none;
  box-shadow: 0 2px 4px rgba(22,48,58,.06), 0 16px 32px -12px rgba(22,48,58,.26); }
.card[hidden] { display: none; }
.card-body { padding: 18px 18px 20px; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.card-city { color: var(--muted); font-size: .88rem; margin-bottom: 9px; }
.card-age { font-size: .9rem; margin: 8px 0; }
.card-age b { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 800; margin-right: 6px; }
.card-age-unk { color: var(--muted); }
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag { font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 99px;
  background: var(--aqua-pale); color: #10646d; overflow-wrap: anywhere; }
.pill { display: inline-block; font-size: .72rem; font-weight: 800; padding: 4px 10px;
  border-radius: 99px; text-transform: uppercase; letter-spacing: .04em; }
.pill-yes { background: #dff2e6; color: #17603c; }
.pill-no { background: #f3e7e3; color: #8a4633; }
.pill-unk { background: #eef0ee; color: #5f6660; }
.rating { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: .92rem; }
.rating .muted { font-weight: 500; }
.star { width: 15px; height: 15px; fill: #f5b301; }
.rating-lg { font-size: 1.05rem; margin: 8px 0 2px; }
.rating-lg .star { width: 18px; height: 18px; }
.muted { color: var(--muted); }

.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.city-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; color: inherit; display: flex; align-items: baseline; gap: 10px;
  box-shadow: var(--shadow); }
.city-tile:hover { text-decoration: none; border-color: var(--aqua-dark); }
.city-tile h3 { font-size: 1rem; font-weight: 700; }
.city-tile p { color: var(--muted); font-size: .85rem; flex: 1; white-space: nowrap; }
.city-tile .arrow { color: #14707c; font-weight: 700; }

.cta-band { padding-bottom: 72px; }
.cta-inner { background: linear-gradient(120deg, var(--aqua-pale), var(--blush-pale));
  border-radius: 24px; padding: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px; }
.cta-inner h2 { font-size: 1.5rem; font-weight: 800; width: 100%; }
.cta-inner p { flex: 1 1 300px; color: #1d4a52; }

.crumbs { padding: 18px 0 0; font-size: .88rem; color: var(--muted); }
.crumbs span { color: var(--ink-2); }
.profile { padding: 8px 0 40px; }
.profile-head { padding: 20px 0 8px; }
.profile-head h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 4px; }
.profile-head .note { margin: 12px 0 0; color: var(--ink-2); max-width: 620px; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; margin-top: 26px; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow); }
.fact h4 { text-transform: uppercase; font-size: .72rem; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 6px; }
.fact p { margin-top: 6px; }
.fact-wide { grid-column: 1 / -1; }
.fact-insurance { border-left: 4px solid var(--aqua); }
.contact-links a { font-weight: 600; }
.fine-print { font-size: .82rem; color: var(--muted); margin-top: 14px; }

.city-head { padding: 24px 0 26px; }
.city-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.lede-sm { color: var(--ink-2); max-width: 640px; margin-top: 10px; font-size: 1.03rem; }
.other-cities { margin: 36px 0 48px; color: var(--muted); font-size: .92rem; }

.article { max-width: 760px; padding-top: 24px; padding-bottom: 64px; }
.article h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); font-weight: 800; }
.article h2 { font-size: 1.35rem; font-weight: 800; margin: 34px 0 10px; }
.article p { margin-bottom: 10px; }
.article ul { margin: 10px 0 10px 22px; }
.article li { margin-bottom: 8px; }
.article-cta { margin-top: 40px; }

.contact-form { margin: 26px 0 18px; display: grid; gap: 16px; max-width: 520px; }
.contact-form label { font-weight: 600; font-size: .95rem; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; font: inherit; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--aqua-dark);
  border-color: var(--aqua-dark); }
.hidden-field { display: none; }

.site-footer { background: var(--ink); color: #c6dcdf; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; padding: 44px 0 24px; }
.logo-footer { font-size: 1.1rem; }
.site-footer p { font-size: .9rem; margin-top: 8px; color: #86a8b0; }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 10px; }
.site-footer a { display: block; color: #c6dcdf; font-size: .92rem; margin-bottom: 7px; }
.footer-note { border-top: 1px solid #24505f; padding-top: 16px; padding-bottom: 26px; }
.footer-note a { display: inline; color: var(--aqua); }
.footer-note .disclaimer { font-size: .82rem; color: #7c9ba3; margin-top: 8px; max-width: 760px; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; }
  .filter-row { flex-direction: column; gap: 6px; } .filter-label { padding-top: 0; } }
