
:root {
  --ink: #0e1b2c;
  --ink-2: #24344d;
  --blue: #1657d0;
  --blue-dark: #10408f;
  --lime: #c6f53c;
  --lime-dark: #a8d629;
  --bg: #f7f9fc;
  --card: #ffffff;
  --line: #e3e9f2;
  --muted: #5b6b82;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(14,27,44,.05), 0 8px 24px -12px rgba(14,27,44,.18);
}
* { 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: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* header */
.site-header { background: var(--ink); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 500; font-size: 1.35rem; color: #fff; letter-spacing: -0.02em; }
.logo span { font-weight: 800; }
.logo .tld { font-weight: 500; color: #8fa2bd; font-size: 1rem; }
.logo .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime); margin: 0 1px 0 2px; }
.logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: #cdd8e8; font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: var(--lime); color: var(--ink) !important; padding: 8px 16px;
  border-radius: 99px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--lime-dark); }
@media (max-width: 640px) { .nav-links a:not(.nav-cta) { display: none; } }

/* hero */
.hero { background: linear-gradient(135deg, var(--ink) 0%, #14315e 55%, var(--blue-dark) 100%);
  color: #fff; padding: 72px 0 80px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; border: 60px solid rgba(198,245,60,.14); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700;
  color: var(--lime); margin-bottom: 10px; }
.hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 800; max-width: 640px; }
.hero h1 em { font-style: normal; color: var(--lime); }
.lede { margin: 18px 0 28px; max-width: 560px; color: #c9d6e8; font-size: 1.06rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.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-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-dark); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-navy { background: var(--ink); color: #fff; }
.btn-navy:hover { background: var(--ink-2); }

/* sections */
.section { padding: 56px 0; }
.section-tint { background: #eef3fa; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 26px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.section-head p { color: var(--muted); }

/* chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.chip { padding: 8px 16px; border-radius: 99px; border: 1.5px solid var(--line); background: #fff;
  font-size: .9rem; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.chip b { color: var(--muted); font-weight: 600; }
.chip:hover { border-color: var(--blue); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.active b { color: var(--lime); }

/* cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 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; }
.card:hover { transform: translateY(-3px); text-decoration: none;
  box-shadow: 0 2px 4px rgba(14,27,44,.06), 0 16px 32px -12px rgba(14,27,44,.24); }
.card-photo { aspect-ratio: 16 / 10; background: #dfe7f2; position: relative; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.no-photo { width: 100%; height: 100%;
  background: linear-gradient(135deg, #dfe7f2, #c6d4e8); }
.badge { position: absolute; top: 10px; left: 10px; background: #ffb020; color: #402c00;
  font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: .04em; }
.badge-inline { position: static; display: inline-block; margin: 10px 0; }
.card-body { padding: 16px 18px 18px; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.card-city { color: var(--muted); font-size: .88rem; margin-bottom: 8px; }
.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 tiles */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 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(--blue); }
.city-tile h3 { font-size: 1.02rem; font-weight: 700; }
.city-tile p { color: var(--muted); font-size: .85rem; flex: 1; }
.city-tile .arrow { color: var(--blue); font-weight: 700; }

/* CTA band */
.cta-band { padding-bottom: 72px; }
.cta-inner { background: var(--lime); 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: #2c3a12; }

/* breadcrumbs + profile */
.crumbs { padding: 18px 20px 0; font-size: .88rem; color: var(--muted); }
.crumbs span { color: var(--ink-2); }
.profile { padding: 20px 20px 40px; }
.profile-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px;
  align-items: center; padding: 24px 0 8px; }
.profile-head h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 4px; }
.profile-head .note { margin: 10px 0 20px; color: var(--ink-2); max-width: 480px; }
.profile-photo { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%;
  aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 760px) { .profile-head { grid-template-columns: 1fr; }
  .profile-photo { order: -1; } }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 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-wide { grid-column: 1 / -1; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours td { padding: 5px 0; border-bottom: 1px solid var(--line); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; color: var(--ink-2); }

/* city page */
.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: 620px; margin-top: 10px; font-size: 1.03rem; }
.other-cities { margin: 36px 0 48px; color: var(--muted); font-size: .92rem; }

/* article */
.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 ul { margin: 10px 0 10px 22px; }
.article li { margin-bottom: 8px; }
.article-cta { margin-top: 40px; }

/* contact form */
.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(--blue); border-color: var(--blue); }
.hidden-field { display: none; }

/* footer */
.site-footer { background: var(--ink); color: #cdd8e8; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; padding: 44px 20px 24px; }
.logo-footer { font-size: 1.15rem; }
.site-footer p { font-size: .9rem; margin-top: 8px; color: #8fa2bd; }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 10px; }
.site-footer a { display: block; color: #cdd8e8; font-size: .92rem; margin-bottom: 7px; }
.footer-note { border-top: 1px solid #24344d; padding-top: 16px; padding-bottom: 26px; }
.footer-note a { display: inline; color: var(--lime); }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
