/* ==========================================================================
   Tampa Bay is Awesome — Marketing site styles
   Anchored to design.md: one stamp blue, ink, white, sand; Archivo Black display + Public Sans body
   ========================================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Public+Sans:wght@400;500;600;700;800&family=Caveat:wght@700&display=swap');

/* Tokens */
:root {
  --blue: #1B5FA0;
  --blue-ink: #124476;
  --blue-tint: #E6EEF6;
  --ink: #14181F;
  --ink-70: #14181Fb3;
  --ink-50: #14181F80;
  --ink-20: #14181F33;
  --ink-10: #14181F1a;
  --white: #FFFFFF;
  --sand: #F4EFE6;
  --sand-deep: #E9E2D2;
  --coral: #FF6B4A;
  --green: #2E9E5B;
  --red: #C4432E;

  --display: 'Archivo Black', 'Anton', 'Arial Black', sans-serif;
  --body: 'Public Sans', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --script: 'Caveat', cursive;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(20,24,31,0.06), 0 2px 8px rgba(20,24,31,0.04);
  --shadow: 0 4px 12px rgba(20,24,31,0.08), 0 12px 32px rgba(20,24,31,0.06);
  --shadow-lg: 0 12px 32px rgba(20,24,31,0.12), 0 32px 64px rgba(20,24,31,0.08);

  --page-max: 1280px;
  --nav-h: 72px;
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Typography */
.display, h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; letter-spacing: 0.02em; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.script { font-family: var(--script); font-size: 1.3em; line-height: 1; color: var(--blue); }

/* Layout helpers */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } .section-tight { padding: 40px 0; } }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--ink-10);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 40px; height: 40px; transform: rotate(-6deg); }
.nav-logo-text {
  font-family: var(--display);
  font-size: 14px; letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--ink);
}
.nav-logo-text small { display: block; font-size: 10px; letter-spacing: 0.18em; color: var(--ink-50); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms, color 180ms;
}
.nav-links a:hover { border-color: var(--blue); color: var(--blue); }
.nav-links a.active { border-color: var(--blue); color: var(--blue); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* Button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  transition: transform 150ms, background 150ms, box-shadow 150ms;
}
.btn:hover { background: var(--blue-ink); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.btn-ghost { background: transparent; color: var(--blue); }
.btn.btn-ghost:hover { background: var(--blue-tint); color: var(--blue-ink); }
.btn.btn-ink { background: var(--ink); border-color: var(--ink); }
.btn.btn-ink:hover { background: #000; }
.btn.btn-sm { padding: 10px 16px; font-size: 12px; }

/* Chip / pillar tag */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--body); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blue-tint);
  color: var(--blue-ink);
  border: 1px solid transparent;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.chip-fun    { background: #E6EEF6; color: #124476; }
.chip-food   { background: #EFE7DA; color: #6B4A1F; }
.chip-events { background: #FFEAE3; color: #A83A20; }
.chip-gems   { background: #E0EEE4; color: #1F6B3F; }
.chip-outline {
  background: transparent; color: var(--ink); border-color: var(--ink-20);
}

/* Stamp badge — small decorative echo of the logo */
.stamp {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px; letter-spacing: 0.05em;
  text-align: center; line-height: 1.05;
  transform: rotate(-8deg);
  box-shadow: 0 6px 14px rgba(27,95,160,0.35);
  padding: 8px;
  position: relative;
}
.stamp::before {
  content: ''; position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.55);
  pointer-events: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--sand);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(20,24,31,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(20,24,31,0.025) 1px, transparent 1px);
  background-size: 12px 12px, 18px 18px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.hero-eyebrow-row .rule {
  width: 40px; height: 2px; background: var(--blue);
}

.hero h1 {
  font-size: clamp(52px, 8vw, 108px);
  color: var(--ink);
  line-height: 0.92;
}
.hero h1 .accent {
  display: inline-block;
  color: var(--blue);
  position: relative;
}
.hero h1 .banner {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.05em 0.28em 0.12em;
  transform: rotate(-2.5deg);
  margin: 0.02em 0;
  box-shadow: 0 8px 18px rgba(27,95,160,0.25);
}
.hero-sub {
  margin-top: 28px;
  font-size: 19px; line-height: 1.5;
  color: var(--ink-70);
  max-width: 520px;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 44px;
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--ink-10);
}
.hero-meta-item .num {
  font-family: var(--display); font-size: 28px; color: var(--blue);
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-50);
  margin-top: 6px;
}

/* Hero photo — angled editorial frame */
.hero-photo {
  position: relative;
  padding: 32px 0 96px;
}
.hero-photo .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .caption {
  position: absolute; left: -12px; bottom: 60px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 12px;
  max-width: 240px;
}
.hero-photo .caption strong { display: block; font-size: 13px; margin-bottom: 2px; }
.hero-photo .caption .cap-eyebrow {
  font-size: 10px; letter-spacing: 0.16em; color: var(--blue); font-weight: 800;
  text-transform: uppercase; margin-bottom: 6px; display: block;
}
.hero-photo .stamp-overlay {
  position: absolute; right: -18px; top: 12px;
}

/* ==========================================================================
   Pillars (primary nav-into-content)
   ========================================================================== */
.pillars { background: var(--white); }
.pillars-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.pillars-head .lead { max-width: 520px; color: var(--ink-70); font-size: 17px; margin-top: 12px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  isolation: isolate;
  transition: transform 250ms;
  background: var(--ink);
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}
.pillar-card:hover img { transform: scale(1.06); }
.pillar-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,31,0.05) 0%, rgba(20,24,31,0.15) 50%, rgba(20,24,31,0.85) 100%);
  pointer-events: none;
}
.pillar-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: var(--white);
  z-index: 2;
}
.pillar-card-body .num {
  font-family: var(--display);
  font-size: 12px; letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 8px;
}
.pillar-card-body h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 8px;
}
.pillar-card-body p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.45;
  margin-bottom: 14px;
}
.pillar-card-body .link {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.pillar-card-body .link .arrow {
  transition: transform 200ms;
}
.pillar-card:hover .link .arrow { transform: translateX(4px); }

.pillar-card .chip {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}

/* ==========================================================================
   Map section
   ========================================================================== */
.map-section { background: var(--sand); }
.map-head {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}
@media (max-width: 720px) { .map-head { grid-template-columns: 1fr; } }
.map-head h2 { max-width: 640px; }
.map-head .lead { color: var(--ink-70); max-width: 480px; margin-top: 14px; font-size: 17px; }

.map-shell {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .map-shell { grid-template-columns: 1fr; } }

.map-frame {
  position: relative;
  background: #F8F1DF;
  border-radius: var(--radius);
  border: 1px solid var(--sand-deep);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 560px;
}
.map-frame svg { display: block; width: 100%; height: 100%; }

.map-legend {
  position: absolute; left: 20px; top: 20px;
  background: rgba(255,255,255,0.92);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  max-width: 210px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.map-legend h4 {
  font-family: var(--display); font-size: 13px; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.map-legend .sub {
  font-size: 10px; letter-spacing: 0.14em; font-weight: 700;
  color: var(--ink-50); text-transform: uppercase; margin-bottom: 10px;
}
.map-legend .rule { height: 1px; background: var(--ink-10); margin: 10px 0; }
.map-legend .legend-row {
  display: flex; gap: 8px; align-items: center;
  font-size: 11px; color: var(--ink-70);
  margin: 4px 0;
}
.map-legend .swatch { width: 12px; height: 12px; border-radius: 50%; }

.map-compass {
  position: absolute; right: 20px; bottom: 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

/* Neighborhood pins on the map */
.pin-hit { cursor: pointer; }
.pin-hit:hover .pin-outer { transform: scale(1.15); }
.pin-outer { transform-origin: center; transition: transform 180ms; }
.pin-label {
  font-family: var(--display);
  font-size: 11px;
  fill: var(--ink);
  letter-spacing: 0.06em;
}
.pin-label.sub {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  fill: var(--ink-50); letter-spacing: 0.14em;
}

/* Right-column neighborhood list */
.neighborhood-list {
  display: flex; flex-direction: column; gap: 12px;
}
.n-card {
  display: grid; grid-template-columns: 88px 1fr auto;
  gap: 14px; align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--sand-deep);
  cursor: pointer;
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.n-card:hover, .n-card.active {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.n-card .thumb {
  width: 88px; height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand-deep);
}
.n-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.n-card .meta h4 {
  font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 4px;
}
.n-card .meta .county {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-50);
}
.n-card .meta .count {
  font-size: 12px; color: var(--ink-70); margin-top: 4px;
}
.n-card .arrow {
  color: var(--blue); font-size: 20px;
}

/* ==========================================================================
   Featured / This Week
   ========================================================================== */
.featured { background: var(--white); }
.featured-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } }

.article-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sand-deep);
  cursor: pointer;
  transition: transform 220ms, box-shadow 220ms, border-color 220ms;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.article-card .photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.article-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.article-card:hover .photo img { transform: scale(1.05); }
.article-card .photo .chip { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); }
.article-card .body { padding: 20px 22px 24px; }
.article-card .body .kicker {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-50); font-weight: 700; margin-bottom: 8px;
}
.article-card .body h3 {
  font-size: 22px; line-height: 1.05; margin-bottom: 8px;
  color: var(--ink);
}
.article-card .body p {
  font-size: 14px; color: var(--ink-70); line-height: 1.5;
  margin-bottom: 12px;
}
.article-card .body .byline {
  font-size: 12px; color: var(--ink-50); font-weight: 500;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.subscribe {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.subscribe::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 14px 14px, 20px 20px;
  pointer-events: none;
}
.subscribe-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .subscribe-inner { grid-template-columns: 1fr; } }
.subscribe h2 { color: var(--white); }
.subscribe .lead { color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 17px; max-width: 480px; }

.socials-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 600;
}
.social-pill strong { color: var(--white); }
.social-pill span { color: rgba(255,255,255,0.6); font-weight: 500; }

.newsletter-form {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.newsletter-form label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-50);
  display: block; margin-bottom: 8px;
}
.newsletter-form .row { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-20);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
}
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form .fine {
  font-size: 12px; color: var(--ink-50); margin-top: 12px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--sand);
  padding: 64px 0 32px;
  border-top: 1px solid var(--sand-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-10);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 96px; transform: rotate(-6deg); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--ink-70); max-width: 320px; }
.footer-col h5 {
  font-family: var(--display); font-size: 12px; letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--ink-70);
  padding: 5px 0;
  transition: color 150ms;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12px; color: var(--ink-50);
  flex-wrap: wrap;
}

/* ==========================================================================
   Neighborhood detail page
   ========================================================================== */
.n-hero {
  position: relative;
  height: 62vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}
.n-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.n-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,31,0.15) 0%, rgba(20,24,31,0.05) 40%, rgba(20,24,31,0.7) 100%);
}
.n-hero-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 0 48px;
  color: var(--white);
  z-index: 2;
}
.n-hero-body h1 { color: var(--white); font-size: clamp(48px, 6vw, 92px); }
.n-hero-body .county-line {
  font-size: 13px; letter-spacing: 0.18em; font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85; margin-bottom: 16px;
}
.n-hero-body .chips { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.n-hero-body .chips .chip {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.24);
  backdrop-filter: blur(6px);
}
.n-hero .back-link {
  position: absolute; top: 24px; left: 0; right: 0;
  z-index: 3;
}
.n-hero .back-link a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.n-hero .back-link a:hover { background: rgba(255,255,255,0.22); }

.n-intro {
  padding: 72px 0 24px;
}
.n-intro-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px;
}
@media (max-width: 900px) { .n-intro-grid { grid-template-columns: 1fr; gap: 24px; } }
.n-intro h2 { font-size: 36px; }
.n-intro .body { font-size: 18px; color: var(--ink-70); line-height: 1.6; }
.n-intro .body p + p { margin-top: 16px; }
.n-intro .quote {
  font-family: var(--script);
  font-size: 28px; color: var(--blue);
  line-height: 1.2;
  padding: 16px 0 0;
  border-top: 1px solid var(--ink-10);
  margin-top: 24px;
}

.n-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--sand);
  border-radius: var(--radius);
  margin: 48px 0 40px;
}
@media (max-width: 720px) { .n-stats { grid-template-columns: repeat(2, 1fr); } }
.n-stat .num { font-family: var(--display); font-size: 40px; color: var(--blue); line-height: 1; }
.n-stat .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-70); font-weight: 700; margin-top: 8px; }

.n-spots { padding: 32px 0 96px; }
.n-spots-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.n-spots-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-20);
  background: transparent;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: all 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

.spot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .spot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spot-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Article detail
   ========================================================================== */
.article-hero {
  padding: 48px 0 0;
  background: var(--sand);
}
.article-hero .back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 32px;
}
.article-hero .chips { display: flex; gap: 8px; margin-bottom: 20px; }
.article-hero h1 { max-width: 12ch; font-size: clamp(44px, 6vw, 88px); }
.article-hero .deck {
  margin-top: 24px;
  font-size: 22px; line-height: 1.4;
  color: var(--ink-70);
  max-width: 640px;
}
.article-hero .byline {
  display: flex; gap: 20px; align-items: center;
  margin-top: 32px; padding: 20px 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  font-size: 13px; color: var(--ink-70);
}
.article-hero .byline strong { color: var(--ink); font-weight: 700; }
.article-hero .photo {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.article-hero .photo img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  padding: 64px 0 32px;
  max-width: 720px;
  margin: 0 auto;
}
.article-body p {
  font-size: 19px; line-height: 1.65; color: var(--ink);
  margin-bottom: 24px;
}
.article-body p:first-of-type::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 72px;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--blue);
}
.article-body h2 {
  font-size: 32px; margin: 40px 0 16px;
  color: var(--ink);
}
.article-body ul { padding-left: 24px; margin: 0 0 24px; }
.article-body ul li { font-size: 18px; margin: 8px 0; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { color: var(--blue); border-bottom: 2px solid var(--blue-tint); font-weight: 500; }
.article-body a:hover { border-color: var(--blue); }
.article-body .pullquote {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.15;
  color: var(--blue);
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  padding: 24px 0;
  margin: 32px 0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.article-body .pullquote-attr {
  font-family: var(--body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em;
  color: var(--ink-70); text-transform: uppercase;
  margin-top: 8px;
}
.article-body figure {
  margin: 32px -80px;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .article-body figure { margin: 32px 0; } }
.article-body figure img { width: 100%; height: auto; display: block; }
.article-body figcaption {
  padding: 12px 16px;
  background: var(--sand);
  font-size: 13px;
  color: var(--ink-70);
}

.article-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--ink-10);
}

.related {
  background: var(--sand);
  padding: 64px 0 96px;
}
.related h2 { margin-bottom: 24px; font-size: 28px; }

/* Utility */
.spacer-lg { height: 64px; }
.divider { height: 1px; background: var(--ink-10); margin: 32px 0; }
