/*
Theme Name: CityVero2
Theme URI: https://cityvero.com
Description: CityVero luxury hyperlocal community platform
Version: 2.0
*/

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

/* ── VARIABLES ── */
:root {
  --cream:  #FDFAF5;
  --sand:   #F5F0E8;
  --sand2:  #EDE6D8;
  --sand3:  #D9CFBC;
  --navy:   #0D1F2D;
  --navy2:  #1A3248;
  --gold:   #B8933A;
  --gold2:  #D4AA55;
  --gold3:  #F0D080;
  --ink:    #0E0E0E;
  --ink2:   #3A3A3A;
  --ink3:   #7A7A7A;
  --white:  #FFFFFF;
  --green:  #1D6A3A;
  --lgreen: #EAF3DE;
  --red:    #C0392B;
  --lred:   #FDE8E8;
}

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

/* ── BASE ── */
html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--cream) !important;
  font-family: 'DM Sans', -apple-system, sans-serif !important;
  font-weight: 400;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Kill WordPress default backgrounds */
.wp-site-blocks, #page, .site, #content { background: transparent !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h1 { font-size: clamp(26px, 4vw, 40px); }
h2 { font-size: clamp(18px, 2.5vw, 26px); margin-bottom: 12px; }
h3 { font-size: clamp(15px, 2vw, 19px); margin-bottom: 8px; }

/* ENFORCE max font-weight 500 */
strong, b, button, label, th, .bold { font-weight: 500 !important; }

p { margin-bottom: 12px; color: var(--ink2); }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--gold); }

/* ── LAYOUT ── */
.cv-wrap { max-width: 100%; margin: 0 auto; padding: 0 28px; }
.cv-wrap-full { max-width: 100%; padding: 0 28px; }
.cv-section { padding: 40px 0; }

/* ── MASTHEAD ── */
.cv-masthead {
  background: var(--cream);
  border-bottom: 1px solid var(--sand3);
  position: sticky;
  top: 0;
  z-index: 999;
}
.cv-masthead-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cv-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy) !important;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
}
.cv-logo span { color: var(--gold) !important; }
.cv-nav { display: flex; align-items: center; gap: 4px; }
.cv-nav a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink3) !important;
  padding: 4px 10px;
  text-decoration: none;
  transition: color 0.15s;
}
.cv-nav a:hover { color: var(--navy) !important; }
.cv-nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 6px 14px !important;
  border-radius: 2px;
}
.cv-nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.cv-town-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3) !important;
  cursor: pointer;
  background: var(--white) !important;
  border: 1px solid var(--sand3) !important;
  padding: 5px 12px;
  border-radius: 2px;
}
.cv-town-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ── HERO BLOCKS ── */
.cv-hero-dark {
  background: var(--navy);
  padding: 72px 28px 64px;
  text-align: center;
}
.cv-hero-dark h1,
.cv-hero-dark h2 { color: var(--white) !important; }
.cv-hero-dark p { color: rgba(255,255,255,0.65) !important; }
.cv-hero-dark .cv-eyebrow { color: var(--gold3) !important; }

.cv-hero-light {
  background: var(--sand);
  border-bottom: 1px solid var(--sand3);
  padding: 48px 28px;
}
.cv-hero-light h1,
.cv-hero-light h2 { color: var(--ink) !important; }
.cv-hero-light p { color: var(--ink2) !important; }

/* ── EYEBROW ── */
.cv-eyebrow {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* ── SECTION RULE ── */
.cv-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0 14px;
  margin: 0 28px;
}
.cv-rule-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.cv-rule-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}
.cv-rule-line { flex: 1; height: 0.5px; background: var(--sand3); }
.cv-rule-count { font-size: 11px; color: var(--ink3); }
.cv-rule-cta { font-size: 11px; color: var(--gold); text-decoration: none; }

/* ── CARDS ── */
.cv-card {
  background: var(--white);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 20px 24px;
  transition: border-color 0.15s;
}
.cv-card:hover { border-color: var(--gold2); }
.cv-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cv-card-sub { font-size: 11px; color: var(--ink3); letter-spacing: 0.04em; margin-bottom: 10px; }
.cv-card-desc { font-size: 12px; color: var(--ink2); line-height: 1.6; }

/* ── BADGES ── */
.cv-badge {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-block;
}
.cv-badge-founding       { background: var(--navy); color: var(--gold3); }
.cv-badge-verified       { background: var(--sand2); color: var(--navy); }
.cv-badge-exclusive      { background: var(--gold); color: var(--navy); }
.cv-badge--institutional { background: var(--navy); color: var(--gold); border: 1px solid rgba(184,147,58,0.45); }
.cv-badge-charter   { background: var(--ink); color: var(--gold3); }
.cv-badge-trial     { background: var(--lgreen); color: var(--green); }

/* ── BUTTONS ── */
.cv-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
}
.cv-btn:hover { background: var(--navy2); color: var(--white); }
.cv-btn-gold { background: var(--gold) !important; color: var(--navy) !important; }
.cv-btn-outline {
  background: transparent !important;
  border: 1px solid var(--sand3) !important;
  color: var(--ink2) !important;
}
.cv-btn-block { display: block; width: 100%; text-align: center; }

/* ── FORMS ── */
.cv-form-wrap {
  background: var(--sand);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 28px;
}
.cv-field { margin-bottom: 16px; }
.cv-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 5px;
}
.cv-input,
.cv-select,
.cv-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink2);
  background: var(--white);
  border: 1px solid var(--sand3);
  border-radius: 2px;
  padding: 10px 12px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.cv-input:focus, .cv-select:focus, .cv-textarea:focus { border-color: var(--navy); }
.cv-textarea { resize: vertical; min-height: 100px; }

/* ── GRID LAYOUTS ── */
.cv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cv-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }

/* ── CATEGORY ITEMS ── */
.cv-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px 16px;
  border: 0.5px solid var(--sand3);
  border-radius: 2px;
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.cv-cat-item:hover { border-color: var(--gold2); background: var(--sand); }
.cv-cat-num {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.cv-cat-name {
  font-size: 11px;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
}
.cv-cat-count { font-size: 9px; color: var(--ink3); }

/* ── TOWN TABS ── */
.cv-town-pills {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--sand3);
  padding: 0;
  margin: 0 28px 0;
  scrollbar-width: none;
}
.cv-town-pills::-webkit-scrollbar { display: none; }
.cv-town-pill {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--ink3);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.cv-town-pill:hover { color: var(--ink); }
.cv-town-pill.active { color: var(--ink); border-bottom-color: var(--gold); }

/* ── PRICING CARDS ── */
.cv-price-card {
  background: var(--white);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 28px;
  position: relative;
}
.cv-price-card.featured { border: 2px solid var(--gold); }
.cv-price-card.dark { background: var(--navy); border-color: var(--navy); }
.cv-price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 4px;
}
.cv-price-card.dark .cv-price-tag { color: var(--white); }
.cv-price-sub { font-size: 12px; color: var(--ink3); margin-bottom: 20px; }
.cv-price-card.dark .cv-price-sub { color: rgba(255,255,255,0.55); }
.cv-price-features { list-style: none; font-size: 11px; color: var(--ink3); line-height: 2.2; margin-bottom: 24px; padding: 0; }
.cv-price-card.dark .cv-price-features { color: rgba(255,255,255,0.65); }

/* Run 17: equal-height card alignment */
.cv-grid-2, .cv-grid-3, .cv-grid-4, .cv-grid-5 { align-items: stretch; }
.cv-price-card { display: flex; flex-direction: column; height: 100%; }
.cv-price-features { flex: 1; }
.cv-price-card .btn, .cv-price-card a.btn { margin-top: auto; }
.cv-popular-tag {
  position: absolute;
  top: -1px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 3px 3px;
}

/* ── VENDOR CARD ── */
.cv-vendor-card {
  background: var(--white);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 10px;
}
.cv-vendor-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.cv-vendor-meta { font-size: 11px; color: var(--ink3); margin-bottom: 10px; letter-spacing: 0.03em; }
.cv-vendor-desc { font-size: 12px; color: var(--ink2); line-height: 1.65; margin-bottom: 16px; }
.cv-vendor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 0.5px solid var(--sand3);
}

/* ── PILLARS (health review) ── */
.cv-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 24px 0; }
.cv-pillar {
  background: var(--white);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}
.cv-pillar-icon { font-size: 20px; margin-bottom: 10px; }
.cv-pillar-name { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.cv-pillar-sub { font-size: 11px; color: var(--ink3); }

/* ── ARRIVAL CHECKLIST ── */
.cv-checklist { list-style: none; margin: 0; padding: 0; }
.cv-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--sand3);
}
.cv-checklist-item:last-child { border-bottom: none; }
.cv-checklist-num {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--sand2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--ink3);
  margin-top: 1px;
}
.cv-checklist-body { flex: 1; }
.cv-checklist-title { font-size: 13px; color: var(--ink); font-weight: 500; margin-bottom: 2px; }
.cv-checklist-sub { font-size: 11px; color: var(--ink3); }
.cv-checklist-link { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
.cv-footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,147,58,0.15);
  padding: 40px 28px;
}
.cv-footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.cv-footer-brand { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); letter-spacing: 0.06em; }
.cv-footer-slogan { font-size: 12px; color: var(--gold2); font-style: italic; margin-top: 4px; }
.cv-footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.cv-footer-links a { font-size: 11px; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.04em; }
.cv-footer-links a:hover { color: var(--white); }
.cv-footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 11px; color: rgba(255,255,255,0.3); }

/* ── ALERTS ── */
.cv-alert-success { background: var(--lgreen); border: 1px solid var(--green); border-radius: 4px; padding: 20px 24px; }
.cv-alert-error   { background: var(--lred);   border: 1px solid var(--red);   border-radius: 4px; padding: 20px 24px; }

/* ── DIVIDER ── */
hr, .cv-divider { border: none; border-top: 1px solid var(--sand3); margin: 28px 0; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .cv-wrap, .cv-wrap-full { padding: 0 16px; }
  .cv-masthead { padding: 0 16px; }
  .cv-grid-2, .cv-grid-3, .cv-grid-4 { grid-template-columns: 1fr; }
  .cv-grid-5 { grid-template-columns: 1fr 1fr; }
  .cv-pillars { grid-template-columns: 1fr; }
  .cv-hero-dark, .cv-hero-light { padding: 48px 16px; }
  .cv-nav a { display: none; }
  .cv-nav-cta { display: inline-block !important; }
}

/* ── TOWN MODAL ── */
.cv-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,31,45,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.cv-modal.open { display: flex; }
.cv-modal-box {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
}


/* ── VENDOR EDITORIAL (homepage 2-col) ── */
.cv-vendor-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--sand3);
}
.cv-ve-col:first-child { border-right: 1px solid var(--sand3); }
.cv-vendor-card--institutional { border: 1px solid rgba(184,147,58,0.45); }
.cv-ve-card {
  padding: 24px 20px;
  border-bottom: 1px solid var(--sand3);
}
.cv-ve-card:last-child { border-bottom: none; }
.cv-ve-tier {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cv-ve-tier-founding      { color: var(--gold); }
.cv-ve-tier-verified      { color: var(--ink3); }
.cv-ve-tier-institutional { color: var(--gold); }
.cv-ve-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.cv-ve-cat { font-size: 11px; color: var(--ink3); letter-spacing: 0.04em; margin-bottom: 10px; }
.cv-ve-desc { font-size: 12px; color: var(--ink2); line-height: 1.65; margin-bottom: 14px; }
.cv-ve-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 0.5px solid var(--sand3);
}
.cv-ve-since { font-size: 10px; color: var(--ink3); }
.cv-ve-since span { color: var(--gold); font-weight: 500; }
.cv-ve-btns { display: flex; gap: 6px; }
.cv-ve-btn {
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  border: none;
  text-decoration: none;
  display: inline-block;
}
.cv-ve-btn-p { background: var(--navy); color: white; }
.cv-ve-btn-s { background: transparent; border: 0.5px solid var(--sand3) !important; color: var(--ink2); }

/* Mobile responsive */
@media (max-width: 640px) {
  .cv-vendor-editorial { grid-template-columns: 1fr; }
  .cv-ve-col:first-child { border-right: none; border-bottom: 1px solid var(--sand3); }
}

/* ── MARQUEE TICKER ── */
.cv-marquee-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--sand3);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}
.cv-marquee-inner {
  display: inline-flex;
  gap: 48px;
  animation: cv-scroll 30s linear infinite;
}
@keyframes cv-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cv-marquee-item {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cv-marquee-sep { color: var(--gold); font-size: 8px; }

/* ── FEATURED VENDOR EDITORIAL ── */
.cv-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
}
.cv-feat-col:first-child { border-right: 1px solid var(--sand3); }
.cv-feat-card {
  padding: 24px 20px;
  border-bottom: 1px solid var(--sand3);
}
.cv-feat-card:last-child { border-bottom: none; }
.cv-feat-tier {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cv-feat-tier-founding      { color: var(--gold); }
.cv-feat-tier-verified      { color: var(--ink3); }
.cv-feat-tier-institutional { color: var(--gold); }
.cv-feat-tier-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.cv-feat-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.cv-feat-cat  { font-size: 11px; color: var(--ink3); margin-bottom: 10px; }
.cv-feat-desc { font-size: 12px; color: var(--ink2); line-height: 1.65; margin-bottom: 14px; }
.cv-feat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 0.5px solid var(--sand3);
  font-size: 10px;
  color: var(--ink3);
}
.cv-feat-meta span { color: var(--gold); font-weight: 500; }

/* ── EVENTS + NEWS 2-COL ── */
.cv-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--sand3);
  max-width: 100%;
  margin: 0 auto;
}
.cv-events-col { padding: 24px 20px; border-right: 1px solid var(--sand3); }
.cv-news-col   { padding: 24px 20px; }
.cv-ev-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--sand3);
}
.cv-ev-item:last-child { border-bottom: none; }
.cv-ev-date { width: 38px; flex-shrink: 0; text-align: center; }
.cv-ev-mo { font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.cv-ev-dy { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--ink); line-height: 1; }
.cv-ev-name { font-size: 13px; color: var(--ink); line-height: 1.3; margin-bottom: 3px; }
.cv-ev-meta { font-size: 10px; color: var(--ink3); }
.cv-nw-item { padding: 14px 0; border-bottom: 0.5px solid var(--sand3); }
.cv-nw-item:last-child { border-bottom: none; }
.cv-nw-src { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cv-nw-hed { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--ink); line-height: 1.35; margin-bottom: 4px; font-weight: 400; }
.cv-nw-age { font-size: 10px; color: var(--ink3); }

/* ── HEALTH REVIEW NAVY BLOCK ── */
.cv-hr-block {
  background: var(--navy);
  padding: 32px 0;
  width: 100%;
}
.cv-hr-block h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: white; font-weight: 400; margin-bottom: 6px; }
.cv-hr-block p { font-size: 12px; color: rgba(255,255,255,0.6); margin: 0; }

/* ── FEATURES STRIP ── */
.cv-features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
  max-width: 100%;
  margin: 0 auto;
}
.cv-feat-block {
  padding: 24px 20px;
  border-right: 1px solid var(--sand3);
}
.cv-feat-block:last-child { border-right: none; }
.cv-feat-num { font-family: 'Playfair Display', serif; font-size: 11px; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.08em; }
.cv-feat-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--ink); line-height: 1.3; margin-bottom: 6px; font-weight: 400; }
.cv-feat-sub { font-size: 11px; color: var(--ink3); line-height: 1.5; }
.cv-feat-cta { margin-top: 14px; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold); display: inline-block; text-decoration: none; }
.cv-feat-cta:hover { color: var(--navy); }

@media (max-width: 640px) {
  .cv-featured-grid { grid-template-columns: 1fr; }
  .cv-feat-col:first-child { border-right: none; border-bottom: 1px solid var(--sand3); }
  .cv-bottom-grid { grid-template-columns: 1fr; }
  .cv-events-col { border-right: none; border-bottom: 1px solid var(--sand3); }
  .cv-features-strip { grid-template-columns: 1fr; }
  .cv-feat-block { border-right: none; border-bottom: 1px solid var(--sand3); }
  .cv-hr-block { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   LAYOUT SYSTEM — single source of truth
   Full-bleed: cv-hero-dark, cv-marquee-bar, cv-footer
   Centered:   cv-center (max-width 1100px)
═══════════════════════════════════════════════════ */

html, body { width: 100%; overflow-x: hidden; margin: 0; padding: 0; }

/* Masthead */
.cv-masthead { width: 100%; box-sizing: border-box; }
.cv-masthead-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  height: 54px; display: flex; align-items: center; justify-content: space-between;
}

/* Full-bleed sections */
.cv-hero-dark, .cv-hero-light, .cv-marquee-bar, .cv-footer {
  width: 100%; box-sizing: border-box;
}

/* Universal centered content wrapper */
.cv-center { max-width: 1100px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }

/* Grid definitions */
.cv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cv-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.cv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cv-featured-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--sand3); border-bottom: 1px solid var(--sand3); }
.cv-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--sand3); }
.cv-features-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--sand3); border-bottom: 1px solid var(--sand3); }

/* Town pills */
.cv-town-pills { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--sand3); overflow-x: auto; }

/* Marquee */
.cv-marquee-bar { overflow: hidden; white-space: nowrap; }
.cv-marquee-inner { display: inline-flex; white-space: nowrap; will-change: transform; animation: cv-scroll 30s linear infinite; }

/* Mobile */
@media (max-width: 768px) {
  .cv-masthead-inner, .cv-center { padding: 0 16px; }
  .cv-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cv-grid-3, .cv-featured-grid, .cv-bottom-grid, .cv-features-strip { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   FRONT-PAGE DESIGN (fp-* namespace)
   All classes prefixed fp- to avoid conflicts with cv-* classes
════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

/* ── Variables (add missing ones) ── */
:root {
  --muted-white: rgba(253, 250, 245, 0.66);
}

/* ── Page wrapper ── */
.fp-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

/* ── Sub-masthead ── */
.fp-sub-mast {
  border-bottom: 1px solid var(--sand3);
  font-size: 10px;
  color: var(--ink3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cream);
}
.fp-sub-mast-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 48px;
  box-sizing: border-box;
}
.fp-divider { color: var(--sand3); margin: 0 10px; }

/* ── Eyebrow ── */
.fp-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.fp-eyebrow-white { color: var(--gold-soft, #C9A44F) !important; }

/* ── Buttons ── */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  line-height: 1;
}
.fp-btn:hover { background: transparent; color: var(--navy); }
.fp-btn-gold { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--cream) !important; }
.fp-btn-gold:hover { background: transparent !important; color: var(--gold) !important; }
.fp-btn-ghost { background: transparent; color: var(--ink); }
.fp-btn-ghost:hover { background: var(--ink); color: var(--cream); }
.fp-btn-on-navy-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.fp-btn-on-navy-gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.fp-btn-navy-ghost { background: transparent; border-color: rgba(253,250,245,0.24); color: var(--cream); }
.fp-btn-navy-ghost:hover { border-color: var(--cream); }
.fp-arrow { display: inline-block; transform: translateY(-1px); }

/* ── Section rule ── */
.fp-section-rule {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 28px 0 22px;
}
.fp-rule-bar { width: 36px; height: 1px; background: var(--gold); display: block; }
.fp-rule-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.fp-rule-line { height: 1px; background: var(--sand3); }
.fp-rule-right { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; }

/* ── Hero ── */
.fp-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--sand3);
}
.fp-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.fp-eyebrow-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.fp-h1 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  font-size: 54px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
  color: var(--ink) !important;
  margin-bottom: 32px !important;
  max-width: 640px;
}
.fp-italic-gold { font-style: italic; color: var(--gold); font-weight: 400; }
.fp-pullquote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink2);
  margin-bottom: 36px;
  max-width: 460px;
}
.fp-searchbar {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--sand3);
  background: var(--cream);
  border-radius: 2px;
  max-width: 520px;
  overflow: hidden;
}
.fp-search-input {
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font: 400 13px 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.fp-search-input::placeholder { color: var(--ink3); }
.fp-searchbar .fp-btn { border-radius: 0; border: 0; }
.fp-hero-meta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  font-size: 11px;
  color: var(--ink3);
  letter-spacing: 0.06em;
  align-items: center;
}
.fp-hero-meta .fp-dot { color: var(--sand3); }

/* Hero right */
.fp-hero-right { display: grid; grid-template-rows: auto auto; gap: 24px; align-content: start; }

/* Stats card */
.fp-stats-card {
  border: 1px solid var(--sand3);
  background: var(--cream);
  padding: 28px 28px 24px;
  border-radius: 4px;
}
.fp-stats-lead {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand3);
  margin-bottom: 18px;
}
.fp-stats-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
}
.fp-stats-tag { font-size: 11px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase; }
.fp-stats-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink2); }
.fp-stats-k { color: var(--ink3); letter-spacing: 0.06em; text-transform: uppercase; font-size: 10px; }
.fp-stats-v { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--ink); }

/* Your town */
.fp-your-town {
  background: var(--sand);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 26px 28px;
}
.fp-your-town-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3); margin-bottom: 6px; }
.fp-your-town-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.2;
}
.fp-your-town-name em { color: var(--gold); font-style: italic; }
.fp-your-town-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Town tabs ── */
.fp-town-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  border-bottom: 1px solid var(--sand3);
  padding-bottom: 14px;
  margin-bottom: 40px;
  font-size: 12px;
}
.fp-town-tabs a {
  color: var(--ink2);
  text-decoration: none;
  padding-bottom: 14px;
  margin-bottom: -15px;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.02em;
}
.fp-town-tabs a.active { color: var(--ink); border-bottom: 1px solid var(--gold); }
.fp-town-tabs a:hover { color: var(--ink); }

/* ── Category grid ── */
.fp-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--sand3);
  border-left: 1px solid var(--sand3);
}
.fp-cat {
  background: var(--cream);
  border-right: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
  padding: 28px 22px 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease;
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}
.fp-cat:hover { border: 1px solid var(--gold); z-index: 1; }

/* Institutional tile treatment */
.fp-cat--institutional {
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: var(--cream);
}
.fp-cat--institutional:hover { border: 1px solid var(--gold); }
.fp-cat__institutional-label {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.fp-cat__partners {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--ink3);
  margin-top: 4px;
  font-style: italic;
  line-height: 1.5;
}

/* Category grid section divider (competitive / institutional split) */
.fp-cat-grid__divider {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px 22px 16px;
  border-right: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
  gap: 14px;
}
.fp-cat-grid__divider-line {
  flex: 1;
  height: 1px;
  background: var(--sand3);
}
.fp-cat-grid__divider-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink3);
  text-transform: uppercase;
  white-space: nowrap;
}
.fp-cat-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.fp-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.25;
  margin: 14px 0;
}
.fp-cat-desc { font-size: 11px; color: var(--ink3); line-height: 1.4; margin: -8px 0 8px; }
.fp-cat-count { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; }

/* ── Vendor grid ── */
.fp-vendor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
}
.fp-vendor {
  border: 1px solid var(--sand3);
  background: var(--cream);
  border-radius: 4px;
  padding: 26px 28px 22px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 10px;
  min-height: 220px;
}
.fp-vendor-featured { border: 1px solid var(--gold); }
.fp-vendor-tier { font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.fp-vendor-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); line-height: 1.2; }
.fp-vendor-loc { font-size: 11px; color: var(--ink3); letter-spacing: 0.04em; }
.fp-vendor-img {
  background: var(--sand);
  border: 1px solid var(--sand3);
  border-radius: 2px;
  aspect-ratio: 16 / 5;
  position: relative;
  overflow: hidden;
}
.fp-vendor-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 8px, rgba(217,207,188,0.55) 8px 9px);
}
.fp-vendor-img::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 9px; color: var(--ink3);
  letter-spacing: 0.14em; text-transform: uppercase;
}
/* When vendor card has a real photo: suppress stripes + text watermark */
.fp-vendor-img[style*="background-image"]::before { display: none; }
.fp-vendor-img[style*="background-image"]::after  { content: ''; }
.fp-vendor-desc { font-size: 12px; color: var(--ink2); line-height: 1.6; }
.fp-vendor-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--sand3);
  font-size: 10px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase;
}
.fp-vendor-btn {
  padding: 9px 14px;
  font-size: 9px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 2px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.fp-vendor-btn:hover { background: var(--ink); color: var(--cream); }

/* ── Marquee ── */
.fp-marquee {
  background: var(--sand);
  border-top: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
  overflow: hidden;
  padding: 16px 0;
}
.fp-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: fp-scroll 40s linear infinite;
  font-size: 11px;
  color: var(--ink2);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.fp-marquee-track span { display: inline-flex; align-items: center; gap: 16px; }
.fp-mq-star { color: var(--gold); font-size: 13px; }
@keyframes fp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Navy sections ── */
.fp-navy { background: var(--navy); color: var(--cream); }
.fp-navy-inner { max-width: 1280px; margin: 0 auto; padding: 88px 48px; box-sizing: border-box; }

/* NFC layout */
.fp-nfc {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.fp-nfc-h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  font-size: 44px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: var(--cream) !important;
  margin: 18px 0 22px !important;
}
.fp-nfc-h2 em { color: var(--gold); font-style: italic; }
.fp-nfc-p { color: var(--muted-white); font-size: 14px; max-width: 460px; margin-bottom: 30px; }

/* NFC card visual */
.fp-nfc-card {
  aspect-ratio: 1.586 / 1;
  max-width: 440px;
  border: 1px solid rgba(184,147,58,0.6);
  border-radius: 4px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}
.fp-nfc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.fp-nfc-wm { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); }
.fp-nfc-wm em { color: var(--gold); font-style: italic; }
.fp-nfc-chip {
  width: 38px; height: 28px;
  border: 1px solid rgba(184,147,58,0.6);
  border-radius: 3px;
  position: relative;
}
.fp-nfc-chip::before, .fp-nfc-chip::after {
  content: ''; position: absolute; background: rgba(184,147,58,0.6);
}
.fp-nfc-chip::before { left: 4px; right: 4px; top: 50%; height: 1px; }
.fp-nfc-chip::after { top: 4px; bottom: 4px; left: 50%; width: 1px; }
.fp-nfc-holder {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--muted-white);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.fp-nfc-holder-name {
  color: var(--cream); font-size: 13px; margin-top: 6px;
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-transform: none;
}
.fp-nfc-wave {
  position: absolute; right: 28px; bottom: 28px;
  width: 32px; height: 32px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  border-top-right-radius: 24px;
  opacity: 0.8;
}
.fp-nfc-wave::before, .fp-nfc-wave::after {
  content: ''; position: absolute;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  border-top-right-radius: 16px;
}
.fp-nfc-wave::before { inset: 6px 6px auto auto; width: 22px; height: 22px; }
.fp-nfc-wave::after { inset: 12px 12px auto auto; width: 12px; height: 12px; }

/* ── Health review ── */
.fp-health {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  background: var(--sand);
  border: 1px solid var(--sand3);
  padding: 56px;
  border-radius: 4px;
  margin-bottom: 72px;
}
.fp-health-h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 34px !important;
  line-height: 1.1 !important;
  color: var(--ink) !important;
  margin: 14px 0 18px !important;
  letter-spacing: -0.01em !important;
}
.fp-health-p { font-size: 13px; color: var(--ink2); margin-bottom: 26px; max-width: 360px; }
.fp-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fp-pillar {
  background: var(--cream);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 24px 22px;
}
.fp-pillar-n { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 18px; }
.fp-pillar-h4 { font-family: 'Playfair Display', serif !important; font-weight: 400 !important; font-size: 18px !important; color: var(--ink) !important; margin-bottom: 10px !important; line-height: 1.2 !important; }
.fp-pillar-p { font-size: 12px; color: var(--ink2); line-height: 1.55; margin: 0 !important; }

/* ── Tiers (membership) ── */
.fp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 8px;
}
.fp-tier {
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 32px 30px 28px;
  background: var(--cream);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  position: relative;
}
.fp-tier-dark { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.fp-tier-eyebrow-row { display: flex; justify-content: space-between; align-items: center; }
.fp-tier-badge {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold); padding: 4px 8px; border-radius: 2px;
}
.fp-tier-dark .fp-tier-badge { color: var(--gold); border-color: var(--gold); }
.fp-tier-name { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--ink); line-height: 1.1; }
.fp-tier-dark .fp-tier-name { color: var(--cream); }
.fp-tier-price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
}
.fp-tier-dark .fp-tier-price { border-color: rgba(253,250,245,0.14); }
.fp-tier-price-p { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--ink); line-height: 1; }
.fp-tier-dark .fp-tier-price-p { color: var(--cream); }
.fp-tier-price-per { font-size: 11px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase; }
.fp-tier-dark .fp-tier-price-per { color: var(--muted-white); }
.fp-tier-list { list-style: none; padding: 0; margin: 0; }
.fp-tier-list li {
  font-size: 12px; color: var(--ink2);
  padding: 8px 0; border-bottom: 1px solid var(--sand3);
  display: grid; grid-template-columns: 14px 1fr; gap: 10px; align-items: baseline;
}
.fp-tier-dark .fp-tier-list li { color: var(--muted-white); border-color: rgba(253,250,245,0.10); }
.fp-tier-list li:last-child { border-bottom: 0; }
.fp-tier-list li::before { content: '—'; color: var(--gold); }
.fp-tier-dark .fp-btn-gold { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--navy) !important; }

/* ── Events + News ── */
.fp-en-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 16px;
}
.fp-col-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px; border-bottom: 1px solid var(--sand3); margin-bottom: 18px;
}
.fp-col-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); }
.fp-col-meta { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; }
.fp-event {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 22px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--sand3);
}
.fp-event-date {
  text-align: center; border: 1px solid var(--sand3);
  background: var(--cream); padding: 10px 0; border-radius: 2px;
}
.fp-event-m { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.fp-event-d { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); line-height: 1; margin-top: 2px; }
.fp-event-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--ink); line-height: 1.25; }
.fp-event-venue { font-size: 11px; color: var(--ink3); letter-spacing: 0.04em; margin-top: 4px; }
.fp-event-time { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; }
.fp-empty {
  padding: 24px; border: 1px dashed var(--sand3); border-radius: 4px;
  text-align: center; font-size: 12px; color: var(--ink3);
  font-style: italic; font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}
.fp-empty a {
  color: var(--gold); font-style: normal; font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; margin-left: 8px;
}
.fp-news-item {
  padding: 20px 0; border-bottom: 1px solid var(--sand3);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline;
}
.fp-news-src { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.fp-news-hed { font-family: 'Playfair Display', serif !important; font-weight: 400 !important; font-size: 19px !important; color: var(--ink) !important; line-height: 1.3 !important; letter-spacing: -0.005em !important; margin: 0 !important; }
.fp-news-age { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; white-space: nowrap; }

/* ── Retirement CTA ── */
.fp-retire {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.fp-retire-h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important; font-size: 34px !important;
  line-height: 1.15 !important; color: var(--cream) !important;
  letter-spacing: -0.01em !important; margin: 12px 0 8px !important;
  max-width: 720px;
}
.fp-retire-h2 em { color: var(--gold); font-style: italic; }
.fp-retire-p { color: var(--muted-white); font-size: 13px; margin: 0; }

/* ── Features strip ── */
.fp-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--sand3);
  border-bottom: 1px solid var(--sand3);
  margin: 72px 0 0;
}
.fp-feature {
  padding: 36px 32px; border-right: 1px solid var(--sand3);
  display: grid; grid-template-rows: auto 1fr auto; gap: 16px; min-height: 200px;
}
.fp-feature:last-child { border-right: 0; }
.fp-feature-n { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--gold); letter-spacing: 0.10em; }
.fp-feature-h4 { font-family: 'Playfair Display', serif !important; font-weight: 400 !important; font-size: 22px !important; color: var(--ink) !important; line-height: 1.2 !important; letter-spacing: -0.005em !important; margin: 0 !important; }
.fp-feature-link {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink) !important; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 8px;
  justify-self: start; padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
.fp-feature-link:hover { color: var(--gold) !important; }

/* ── Masthead max-width alignment ── */
.cv-masthead-inner { max-width: 1280px; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .fp-page { padding: 0 24px; }
  .fp-sub-mast-inner { padding: 10px 24px; }
  .fp-hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 48px; }
  .fp-h1 { font-size: 36px !important; }
  .fp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-vendor-grid { grid-template-columns: 1fr; }
  .fp-nfc { grid-template-columns: 1fr; gap: 40px; }
  .fp-nfc-h2 { font-size: 30px !important; }
  .fp-health { grid-template-columns: 1fr; padding: 32px; }
  .fp-pillars { grid-template-columns: 1fr; }
  .fp-tiers { grid-template-columns: 1fr; }
  .fp-en-grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-retire { grid-template-columns: 1fr; }
  .fp-features { grid-template-columns: 1fr; }
  .fp-feature { border-right: 0; border-bottom: 1px solid var(--sand3); }
  .fp-navy-inner { padding: 48px 24px; }
  .fp-features-strip { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fp-page { padding: 0 16px; }
  .fp-sub-mast-inner { padding: 8px 16px; flex-direction: column; gap: 4px; }
  .fp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-town-tabs { gap: 16px; }
  .fp-hero-meta { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════
   DIRECTORY PAGE — page-directory.php
   ═══════════════════════════════════════════════════════════ */

/* Container */
.dir-page { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* Sub-masthead */
.dir-sub-mast {
  border-bottom: 1px solid var(--sand3);
  font-size: 10px; color: var(--ink3);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.dir-sub-mast-inner {
  display: flex; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 10px 48px;
}
.dir-sub-mast .divider { color: var(--sand3); margin: 0 10px; }

/* Breadcrumb */
.dir-crumb {
  display: flex; gap: 10px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3);
  padding: 20px 0 0;
}
.dir-crumb a { color: var(--ink3); text-decoration: none; }
.dir-crumb a:hover { color: var(--ink); }
.dir-crumb .sep { color: var(--sand3); }
.dir-crumb .here { color: var(--gold); }

/* Eyebrow */
.dir-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}

/* Hero */
.dir-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--sand3);
  align-items: end;
}
.dir-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 56px;
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--ink);
  margin: 18px 0 20px;
}
.dir-hero h1 em { font-style: italic; color: var(--gold); }
.dir-hero .sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px;
  color: var(--ink2); max-width: 520px;
}

/* Search bar */
.dir-search {
  display: grid;
  grid-template-columns: 1fr auto auto;
  border: 1px solid var(--sand3);
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 32px;
  max-width: 640px;
}
.dir-search input {
  background: transparent; border: 0;
  padding: 16px 18px;
  font: 400 13px 'DM Sans', sans-serif;
  color: var(--ink); outline: none;
}
.dir-search input::placeholder { color: var(--ink3); }
.dir-search select {
  background: transparent; border: 0;
  border-left: 1px solid var(--sand3);
  padding: 0 34px 0 20px;
  font: 400 12px 'DM Sans', sans-serif;
  color: var(--ink); outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink3) 50%), linear-gradient(135deg, var(--ink3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.dir-search-btn {
  border-radius: 0; border: 0; border-left: 1px solid var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 13px 20px;
  background: var(--navy); color: var(--cream);
  cursor: pointer; white-space: nowrap;
}
.dir-search-btn:hover { background: #1a3248; }

/* Stats box */
.dir-right-stats {
  border: 1px solid var(--sand3);
  background: var(--sand);
  border-radius: 4px;
  padding: 28px;
}
.dir-right-stats .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--sand3);
}
.dir-right-stats .row:last-child { border-bottom: 0; padding-bottom: 0; }
.dir-right-stats .row:first-child { padding-top: 0; }
.dir-right-stats .k { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; }
.dir-right-stats .v { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); }
.dir-right-stats .v em { color: var(--gold); font-style: italic; }

/* Town tabs */
.dir-town-tabs {
  display: flex; flex-wrap: wrap; gap: 28px;
  border-bottom: 1px solid var(--sand3);
  padding-bottom: 14px;
  margin-bottom: 28px;
  font-size: 12px;
}
.dir-town-tabs a {
  color: var(--ink2); text-decoration: none;
  padding-bottom: 14px; margin-bottom: -15px;
  border-bottom: 1px solid transparent;
}
.dir-town-tabs a.active { color: var(--ink); border-bottom: 1px solid var(--gold); }
.dir-town-tabs a:hover { color: var(--ink); }
.dir-town-tabs .count { color: var(--ink3); font-size: 10px; letter-spacing: 0.08em; margin-left: 4px; }

/* Filter row */
.dir-filter-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  font-size: 11px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase;
}
.dir-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.dir-chip {
  border: 1px solid var(--sand3);
  padding: 8px 14px;
  border-radius: 2px;
  background: var(--cream);
  font-size: 10px;
  color: var(--ink2);
  letter-spacing: 0.10em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
  user-select: none;
}
.dir-chip.on { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.dir-chip:hover:not(.on) { border-color: var(--ink); }
.dir-sort-btn {
  background: none; border: none; cursor: pointer;
  font-size: 11px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; padding: 0;
}
.dir-sort-btn:hover { color: var(--ink); }

/* Listings grid */
.dir-listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dir-listing {
  border: 1px solid var(--sand3);
  background: var(--cream);
  border-radius: 4px;
  padding: 24px 24px 20px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  min-height: 260px;
  transition: border-color 180ms ease;
  text-decoration: none;
  color: inherit;
}
a.dir-listing:hover { border-color: var(--gold); }
.dir-listing .tier-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.dir-listing .name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--ink); line-height: 1.2;
}
.dir-listing .loc { font-size: 11px; color: var(--ink3); letter-spacing: 0.04em; }
.dir-listing .desc { font-size: 12px; color: var(--ink2); line-height: 1.55; }
.dir-listing .foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--sand3);
  font-size: 10px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase;
}
.dir-listing .foot .cta { color: var(--gold); }

/* Reserved listing */
.dir-listing.reserved {
  background: var(--sand); border-style: dashed;
  cursor: default;
}
.dir-listing.reserved .name { color: var(--ink2); }
.dir-listing.reserved .tier-label { color: var(--ink3); }

/* Featured listing — charter founding, spans 2 cols */
.dir-listing.featured {
  border: 1px solid var(--gold);
  grid-column: span 2;
}
.dir-listing.featured .feat-img {
  aspect-ratio: 16/5;
  background: var(--sand); border: 1px solid var(--sand3);
  border-radius: 2px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.dir-listing.featured .feat-img::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 8px, rgba(217,207,188,0.55) 8px 9px);
}

/* Empty state */
.dir-empty {
  grid-column: 1 / -1;
  padding: 64px 0; text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px; color: var(--ink3);
}

/* Bottom CTA */
.dir-bottom-cta { text-align: center; padding: 64px 0 96px; }
.dir-bottom-cta .serif-it {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px; color: var(--ink2);
}
.dir-ghost-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 13px 20px; margin-top: 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent; color: var(--ink);
  cursor: pointer; text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.dir-ghost-btn:hover { background: var(--ink); color: var(--cream); }

/* Responsive */
@media (max-width: 900px) {
  .dir-hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
  .dir-hero h1 { font-size: 38px; }
  .dir-listings { grid-template-columns: 1fr 1fr; }
  .dir-listing.featured { grid-column: span 2; }
  .dir-page { padding: 0 20px; }
  .dir-sub-mast-inner { padding: 10px 20px; }
  .dir-search { max-width: 100%; }
}
@media (max-width: 600px) {
  .dir-listings { grid-template-columns: 1fr; }
  .dir-listing.featured { grid-column: span 1; }
  .dir-search { grid-template-columns: 1fr auto; }
  .dir-search select { display: none; }
  .dir-town-tabs { gap: 16px; }
}

/* ── News item layout ─────────────────────────────────────── */
.fp-news-item{display:flex;align-items:flex-start;padding:14px 0;border-bottom:0.5px solid var(--sand3,rgba(13,31,45,.08))}
.fp-news-item:last-child{border-bottom:none}
.fp-news-body{flex:1;min-width:0}
.fp-news-src{font-size:9px;letter-spacing:0.10em;text-transform:uppercase;color:var(--gold,#B8933A);margin-bottom:5px}
.fp-news-hed{font-family:"Playfair Display",serif;font-size:15px;color:var(--ink,#1e2a35);line-height:1.4;font-weight:400;margin-bottom:5px}
.fp-news-summary{font-size:12px;color:var(--ink2,#4a5568);line-height:1.65;margin-bottom:6px}
.fp-news-readmore{font-size:10px;color:var(--ink3,#8a8f96);letter-spacing:0.06em;text-transform:uppercase;text-decoration:none}
.fp-news-readmore:hover{color:var(--gold,#B8933A)}
.fp-news-age{display:none} /* age now inline in src line */
.fp-news-via{display:none} /* removed — was causing emoji img tags */
img.emoji{display:none!important} /* block any remaining WP emoji imgs */

/* ===== Design Handoff — CityVero Interior Pages — 2026-04-19 ===== */
/* CityVero Design System */
:root {
  --cream: #FDFAF5;
  --navy: #0D1F2D;
  --gold: #B8933A;
  --gold-soft: #C9A44F;
  --sand: #F5F0E8;
  --sand3: #D9CFBC;
  --ink: #0E0E0E;
  --ink2: #3A3A3A;
  --ink3: #7A7A7A;
  --muted-white: rgba(253, 250, 245, 0.66);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink2);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* Type */
.serif { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--ink); letter-spacing: -0.005em; }
.serif-it { font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic; }
.mono { font-family: 'DM Mono', monospace; }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.white { color: var(--gold-soft); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy); color: var(--cream);
  cursor: pointer; text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { background: transparent; color: var(--navy); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--cream); }
.btn.gold:hover { background: transparent; color: var(--gold); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--cream); }
.btn.on-navy-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn.on-navy-gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn.on-navy-outline { background: transparent; border-color: rgba(253,250,245,0.24); color: var(--cream); }
.btn.on-navy-outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn.full { width: 100%; justify-content: center; padding: 16px; font-size: 11px; }
.arrow { display: inline-block; transform: translateY(-1px); }

/* Sub-masthead */
.sub-mast {
  border-bottom: 1px solid var(--sand3);
  font-size: 10px; color: var(--ink3);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.sub-mast-inner {
  display: flex; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 10px 48px;
}
.sub-mast .divider { color: var(--sand3); margin: 0 10px; }

/* Masthead */
.masthead {
  border-bottom: 1px solid var(--sand3);
  background: var(--cream);
}
.masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 48px;
  max-width: 1280px; margin: 0 auto;
  gap: 40px;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
}
.wordmark .vero { color: var(--gold); font-style: italic; }
.mast-nav {
  display: flex; gap: 28px;
  font-size: 12px; color: var(--ink2);
}
.mast-nav a {
  color: var(--ink2); text-decoration: none;
  padding: 4px 0;
}
.mast-nav a:hover { color: var(--ink); }
.mast-nav a.active { color: var(--ink); border-bottom: 1px solid var(--gold); }
.mast-nav .dot { color: var(--sand3); }
.mast-right { justify-self: end; }
.town-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--sand3);
  border-radius: 2px;
  font-size: 11px; color: var(--ink);
  background: var(--cream);
  cursor: pointer;
  font-family: inherit;
}
.town-pill:hover { border-color: var(--ink); }
.town-pill .gdot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* Section rule */
.section-rule {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 28px 0 22px;
}
.section-rule .bar { width: 36px; height: 1px; background: var(--gold); }
.section-rule .label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.section-rule .line { height: 1px; background: var(--sand3); }
.section-rule .right { font-size: 10px; color: var(--ink3); letter-spacing: 0.10em; text-transform: uppercase; }

/* Navy sections */
.navy { background: var(--navy); color: var(--cream); }
.navy-inner { max-width: 1280px; margin: 0 auto; padding: 88px 48px; }

/* Footer */
.footer { background: var(--navy); color: var(--muted-white); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 72px 48px 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,250,245,0.10);
}
.footer-top .wm { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--cream); }
.footer-top .wm em { color: var(--gold); font-style: italic; }
.footer-top .tag { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); margin-top: 12px; font-size: 16px; }
.footer-top .fine { font-size: 11px; color: var(--muted-white); margin-top: 24px; max-width: 380px; line-height: 1.6; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  justify-self: end; align-self: start;
}
.footer-nav a { color: var(--muted-white); text-decoration: none; font-size: 12px; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px;
  font-size: 10px; color: var(--muted-white);
  letter-spacing: 0.10em; text-transform: uppercase;
}
.footer-bottom .r a { color: var(--muted-white); text-decoration: none; margin-left: 24px; }

/* Page intro */
.page-intro {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--sand3);
}
.page-intro .eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.page-intro .eyebrow-row .line { flex: 1; height: 1px; background: var(--gold); opacity: 0.5; max-width: 380px; }
.page-intro h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 54px;
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 22px;
}
.page-intro h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-intro .sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px;
  color: var(--ink2);
  max-width: 640px;
}

/* Forms */
.form-card {
  border: 1px solid var(--sand3);
  background: var(--cream);
  border-radius: 4px;
  padding: 44px 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink3);
}
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid var(--sand3);
  background: var(--cream);
  border-radius: 2px;
  padding: 14px 16px;
  font: 400 13px 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 140ms ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--gold);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--ink3); }
.form-row textarea { resize: vertical; min-height: 140px; font-family: 'DM Sans', sans-serif; }
.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink3) 50%), linear-gradient(135deg, var(--ink3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.form-note {
  font-size: 11px; color: var(--ink3);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-top: 4px;
}

/* Charter banner */
.charter-banner {
  border: 1px solid var(--gold);
  background: var(--sand);
  border-radius: 4px;
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.charter-banner .l { display: flex; align-items: baseline; gap: 14px; }
.charter-banner .name {
  font-family: 'Playfair Display', serif; font-size: 18px;
  color: var(--ink);
}
.charter-banner .detail { font-size: 12px; color: var(--ink2); }
.charter-banner .left { font-size: 10px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }

/* Pillars */
.pillars-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 32px 28px;
}
.pillar .n { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 22px; }
.pillar h4 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 22px; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.pillar p { font-size: 12px; color: var(--ink2); line-height: 1.6; }

/* Tier cards (shared) */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  border: 1px solid var(--sand3);
  border-radius: 4px;
  padding: 32px 30px 28px;
  background: var(--cream);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
}
.tier .eyebrow-row { display: flex; justify-content: space-between; align-items: center; }
.tier .badge {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 8px;
  border-radius: 2px;
}
.tier .name { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--ink); line-height: 1.1; }
.tier .price { display: flex; align-items: baseline; gap: 8px; padding: 14px 0; border-top: 1px solid var(--sand3); border-bottom: 1px solid var(--sand3); }
.tier .price .p { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--ink); line-height: 1; }
.tier .price .per { font-size: 11px; color: var(--ink3); letter-spacing: 0.08em; text-transform: uppercase; }
.tier ul { list-style: none; padding: 0; margin: 0; }
.tier ul li {
  font-size: 12px; color: var(--ink2);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand3);
  display: grid; grid-template-columns: 14px 1fr; gap: 10px;
  align-items: baseline;
}
.tier ul li:last-child { border-bottom: 0; }
.tier ul li::before { content: '—'; color: var(--gold); }
.tier.dark { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.tier.dark .name { color: var(--cream); }
.tier.dark .price { border-color: rgba(253,250,245,0.14); }
.tier.dark .price .p { color: var(--cream); }
.tier.dark .price .per { color: var(--muted-white); }
.tier.dark ul li { color: var(--muted-white); border-color: rgba(253,250,245,0.10); }
.tier.dark .btn { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.tier.dark .btn:hover { background: transparent; color: var(--gold); }

.spacer { height: 72px; }
.spacer-sm { height: 32px; }
.spacer-lg { height: 104px; }

/* Breadcrumb */
.crumb {
  display: flex; gap: 10px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3);
  padding: 20px 0 0;
}
.crumb a { color: var(--ink3); text-decoration: none; }
.crumb a:hover { color: var(--ink); }
.crumb .sep { color: var(--sand3); }
.crumb .here { color: var(--gold); }

/* ================================================
   OPTION A — DARK HERO — April 2026
   REVERT:
   sed -i '/OPTION A — DARK HERO/,/END OPTION A/d' style.css
   ================================================ */

/* Sub-masthead strip — navy */
.fp-sub-mast {
  background: #0D1F2D !important;
  border-bottom: none !important;
}
.fp-sub-mast,
.fp-sub-mast div,
.fp-sub-mast span {
  color: rgba(255,255,255,0.45) !important;
}

/* Hero section — navy background, hide photo (logged-out only) */
body:not(.logged-in) section.fp-page:first-of-type {
  background: #0D1F2D !important;
}
body:not(.logged-in) section.fp-page:first-of-type > div:first-child {
  opacity: 0.04 !important;
}

/* Hero headline white */
.fp-h1 {
  color: #FFFFFF !important;
}

/* Gold italic span unchanged — pops on navy */
.fp-italic-gold {
  color: #B8933A !important;
}

/* Pullquote / tagline */
.fp-pullquote {
  color: rgba(255,255,255,0.58) !important;
  border-left-color: #B8933A !important;
}

/* Eyebrow label */
.fp-eyebrow {
  color: #B8933A !important;
}

/* Small meta line: 8 towns · 10 categories */
.fp-hero-meta,
.fp-hero-meta span {
  color: rgba(255,255,255,0.38) !important;
}

/* Search input on navy */
.fp-search-input {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.18) !important;
  color: #FFFFFF !important;
}
.fp-search-input::placeholder {
  color: rgba(255,255,255,0.32) !important;
}

/* Explore button — gold fill, navy text */
.fp-hero-left .fp-btn {
  background: #B8933A !important;
  color: #0D1F2D !important;
  border-color: #B8933A !important;
  font-weight: 700 !important;
}

/* Stats card — white floating on navy */
.fp-stats-card {
  background: #FFFFFF !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22) !important;
}
.fp-stats-num { color: #0D1F2D !important; }
.fp-stats-tag { color: #666666 !important; }
.fp-stats-k   { color: #888888 !important; }
.fp-stats-v   { color: #0D1F2D !important; }

/* Your Town card — white floating on navy */
.fp-your-town {
  background: #FFFFFF !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22) !important;
}
.fp-your-town-label   { color: #888888 !important; }
.fp-your-town-name    { color: #0D1F2D !important; }
.fp-your-town-name em { color: #B8933A !important; }

/* Buttons on white card */
.fp-your-town .fp-btn-ghost {
  border-color: #0D1F2D !important;
  color: #0D1F2D !important;
  background: white !important;
}
.fp-your-town .fp-btn-ghost:first-child {
  background: #0D1F2D !important;
  color: #FFFFFF !important;
}

/* ================================================
   END OPTION A
   ================================================ */

/* ── CATEGORY TILE ICONS ─────────────────────────────── */
.fp-cat { flex-direction: column; align-items: flex-start; }
.fp-cat-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sand3);
  color: var(--gold);
  margin-bottom: 14px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.fp-cat-icon svg { width: 20px; height: 20px; }
.fp-cat:hover .fp-cat-icon {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
/* END CATEGORY TILE ICONS */

/* ================================================
   CONCEPT C UPGRADE — April 2026
   Full-bleed hero · Stats strip · Magazine layout
   ================================================ */

/* ── HERO UPGRADE ── */
body:not(.logged-in) section.fp-page:first-of-type > div:first-child {
  opacity: 0.18 !important;
}
.fp-hero {
  background: linear-gradient(
    to bottom,
    rgba(13,31,45,0.3) 0%,
    rgba(13,31,45,0.75) 60%,
    rgba(13,31,45,0.92) 100%
  ) !important;
  padding-bottom: 48px !important;
  padding-top: 56px !important;
}
.fp-h1 {
  font-size: clamp(36px, 5vw, 58px) !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
  margin-bottom: 16px !important;
}
.fp-pullquote {
  font-family: 'Playfair Display', serif !important;
  font-size: 17px !important;
  font-style: italic !important;
  color: rgba(255,255,255,0.62) !important;
  line-height: 1.65 !important;
  border-left: 3px solid var(--gold) !important;
  padding-left: 16px !important;
  margin-bottom: 28px !important;
}
.fp-search-input {
  background: rgba(255,255,255,0.09) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: white !important;
  font-size: 14px !important;
  padding: 13px 18px !important;
}
.fp-search-input::placeholder { color: rgba(255,255,255,0.32) !important; }
.fp-btn.fp-explore-btn, button.fp-explore {
  padding: 13px 24px !important;
  font-size: 11px !important;
}
.fp-stats-card, .fp-your-town {
  box-shadow: 0 8px 32px rgba(0,0,0,0.28) !important;
  border-radius: 6px !important;
}

/* ── STATS STRIP ── */
.cv-stats-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.cv-stats-strip-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cv-ss-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.cv-ss-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.cv-ss-div {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
}
.cv-ss-live {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ── THIS WEEKEND SECTION ── */
.cv-weekend-section {
  background: var(--cream);
  padding: 36px 40px;
}
.cv-weekend-spread {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--sand2, #e8e0d0);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
}
.cv-ws-main-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cv-ws-main-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
}
.cv-ws-main-body {
  padding: 20px 24px;
  border-top: 3px solid var(--gold);
}
.cv-ws-main-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.cv-ws-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cv-ws-main-meta { font-size: 12px; color: var(--ink3); }
.cv-ws-side {
  border-left: 1px solid var(--sand2, #e8e0d0);
  display: flex;
  flex-direction: column;
}
.cv-ws-side-item {
  flex: 1;
  padding: 16px 20px;
  border-bottom: 1px solid var(--sand2, #e8e0d0);
  cursor: pointer;
  transition: background 0.15s;
}
.cv-ws-side-item:last-child { border-bottom: none; }
.cv-ws-side-item:hover { background: var(--sand); }
.cv-ws-side-img {
  width: 100%;
  height: 80px;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
  border-radius: 2px;
}
.cv-ws-side-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.cv-ws-side-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.cv-ws-side-meta { font-size: 11px; color: var(--ink3); }
.cv-weekend-see-all {
  text-align: right;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: block;
}

/* ── COMMUNITY HUB ── */
.cv-hub-section {
  background: white;
  padding: 36px 40px;
  border-top: 1px solid var(--sand2, #e8e0d0);
  border-bottom: 1px solid var(--sand2, #e8e0d0);
}
.cv-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand2, #e8e0d0);
  border: 1px solid var(--sand2, #e8e0d0);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
}
.cv-hub-cell {
  background: white;
  padding: 22px;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.cv-hub-cell:hover { background: var(--cream); }
.cv-hub-cell.cv-hub-featured { background: var(--navy); }
.cv-hub-cell.cv-hub-featured:hover { background: #152535; }
.cv-hub-cell-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.10em;
  margin-bottom: 8px;
}
.cv-hub-cell-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.cv-hub-cell-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cv-hub-cell.cv-hub-featured .cv-hub-cell-title { color: white; }
.cv-hub-cell-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
}
.cv-hub-cell.cv-hub-featured .cv-hub-cell-desc { color: rgba(255,255,255,0.5); }
.cv-hub-cell-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  display: block;
  text-decoration: none;
}
.cv-hub-cell-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 8px;
  font-weight: 700;
}

/* ── DIRECTORY SUBCATEGORY PILLS ── */
.fp-cat-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.fp-cat-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  padding: 2px 8px;
  background: var(--sand);
  color: var(--ink3);
  border-radius: 2px;
}

/* ── SECTION HEADING — magazine style ── */
.cv-mag-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cv-mag-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.cv-mag-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
}
.cv-mag-see-all {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  white-space: nowrap;
}

/* ── NFC SECTION — more prominence ── */
.fp-navy { padding: 52px 40px !important; }
.fp-nfc-h2 {
  font-size: clamp(26px, 3.5vw, 38px) !important;
  line-height: 1.2 !important;
}

/* ================================================
   END CONCEPT C UPGRADE
   ================================================ */

/* ── HUB CELL ICON WRAPPER ── */
.cv-hub-cell-icon-wrap { flex-shrink: 0; }
.cv-hub-cell-icon-wrap svg { display: block; }
.cv-hub-featured .cv-hub-cell-icon-wrap { background: rgba(184,147,58,0.15) !important; }
.cv-hub-cell { transition: transform 0.15s, box-shadow 0.15s; }
.cv-hub-cell:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.cv-hub-featured:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.cv-hub-cell-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.10em; margin-bottom: 6px; }
/* END HUB CELL UPGRADES */

/* ============================================================
   CityVero v7.2 — All selectors suffixed -v72 (zero override)
   ============================================================ */

/* Hero Question */
.cv-hero-v72 {
  background: var(--navy);
  padding: 72px 48px 64px;
}
.cv-hero-v72__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.cv-hero-v72__prompt {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.cv-hero-v72__question {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 400;
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 32px;
  transition: opacity 0.4s ease;
}
.cv-hero-v72__search {
  display: flex;
  max-width: 560px;
  margin: 0 auto 24px;
  border: 1px solid rgba(253,250,245,0.24);
  border-radius: 2px;
  overflow: hidden;
}
.cv-hero-v72__input {
  flex: 1;
  background: rgba(253,250,245,0.07);
  border: none; outline: none;
  padding: 14px 18px;
  font: 400 13px 'DM Sans', sans-serif;
  color: var(--cream);
}
.cv-hero-v72__input::placeholder { color: rgba(253,250,245,0.4); }
.cv-hero-v72__submit {
  background: var(--gold);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  display: flex; align-items: center;
  transition: background 160ms ease;
}
.cv-hero-v72__submit:hover { background: var(--gold-soft); }
.cv-hero-v72__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.cv-hero-v72__chip {
  font-size: 11px; color: rgba(253,250,245,0.7);
  border: 1px solid rgba(253,250,245,0.18);
  border-radius: 2px;
  padding: 6px 12px;
  text-decoration: none;
  transition: border-color 160ms, color 160ms;
}
.cv-hero-v72__chip:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* NFC Strip */
.cv-nfc-v72 {
  background: var(--navy);
  border-top: 1px solid rgba(253,250,245,0.08);
  padding: 80px 0;
}
.cv-nfc-v72__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.cv-nfc-v72__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 38px;
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--cream);
  margin: 14px 0 18px;
}
.cv-nfc-v72__title em { color: var(--gold); font-style: italic; }
.cv-nfc-v72__body {
  font-size: 13px; color: var(--muted-white);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.cv-nfc-v72__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cv-nfc-v72__card-stack {
  position: relative;
  width: 100%; max-width: 400px;
  aspect-ratio: 1.586;
  justify-self: end;
}
.cv-nfc-v72__card {
  position: absolute; inset: 0;
  border: 1px solid rgba(184,147,58,0.55);
  border-radius: 6px; padding: 26px;
  background: var(--navy);
  display: grid; grid-template-rows: auto 1fr auto;
}
.cv-nfc-v72__card--back  { transform: translate(20px,20px) rotate(-3deg); border-color: rgba(253,250,245,0.12); }
.cv-nfc-v72__card--mid   { transform: translate(10px,10px) rotate(-1.5deg); border-color: rgba(184,147,58,0.3); }
.cv-nfc-v72__card-top    { display: flex; justify-content: space-between; align-items: flex-start; }
.cv-nfc-v72__card-wm     { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--cream); }
.cv-nfc-v72__card-wm em  { color: var(--gold); font-style: italic; }
.cv-nfc-v72__chip { width: 34px; height: 24px; border: 1px solid rgba(184,147,58,0.6); border-radius: 3px; position: relative; }
.cv-nfc-v72__chip::before, .cv-nfc-v72__chip::after { content:''; position:absolute; background:rgba(184,147,58,0.6); }
.cv-nfc-v72__chip::before { left:4px; right:4px; top:50%; height:1px; }
.cv-nfc-v72__chip::after  { top:4px; bottom:4px; left:50%; width:1px; }
.cv-nfc-v72__card-family  { font-family:'DM Mono',monospace; font-size:10px; color:var(--muted-white); letter-spacing:0.14em; text-transform:uppercase; }
.cv-nfc-v72__card-welcome { font-family:'Playfair Display',serif; font-style:italic; font-size:14px; color:var(--cream); margin-top:4px; }

/* Community Hub */
.cv-hub-v72 {
  padding: 72px 0;
  border-bottom: 1px solid var(--sand3);
}
.cv-hub-v72__inner { max-width: 1280px; margin: 0 auto; }
.cv-hub-v72__header { margin-bottom: 32px; }
.cv-hub-v72__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 36px;
  color: var(--ink); line-height: 1.1;
  margin-top: 10px;
}
.cv-hub-v72__title em { color: var(--gold); font-style: italic; }
.cv-hub-v72__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cv-hub-v72__card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--sand3);
  border-radius: 4px;
  background: var(--cream);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 160ms, box-shadow 160ms;
}
.cv-hub-v72__card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(184,147,58,0.10);
}
.cv-hub-v72__card--gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.cv-hub-v72__card--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); box-shadow: none; }
.cv-hub-v72__icon { flex-shrink: 0; }
.cv-hub-v72__card-body { flex: 1; }
.cv-hub-v72__card-label { font-size: 13px; font-weight: 500; color: inherit; }
.cv-hub-v72__card-sub   { font-size: 11px; color: var(--ink3); margin-top: 3px; }
.cv-hub-v72__card--gold .cv-hub-v72__card-sub { color: rgba(13,31,45,0.65); }
.cv-hub-v72__arrow { font-size: 14px; color: var(--gold); flex-shrink: 0; }
.cv-hub-v72__card--gold .cv-hub-v72__arrow { color: var(--navy); }

/* Nav v72 dropdown */
.cv-nav-v72 { position: relative; }
.cv-nav-v72__item { position: relative; }
.cv-nav-v72__dropdown { position: relative; }
.cv-nav-v72__dd-trigger {
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; padding: 4px 0;
  display: flex; align-items: center; gap: 4px;
}
.cv-nav-v72__caret { font-size: 10px; }
.cv-nav-v72__dd-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: var(--cream);
  border: 1px solid var(--sand3);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  z-index: 100;
  padding: 8px 0;
}
.cv-nav-v72__dropdown:hover .cv-nav-v72__dd-menu,
.cv-nav-v72__dropdown:focus-within .cv-nav-v72__dd-menu { display: block; }
.cv-nav-v72__dd-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px; color: var(--ink2);
  text-decoration: none;
}
.cv-nav-v72__dd-menu a:hover { background: var(--sand); color: var(--gold); }

/* Answer page single template */
.cv-answer-page-v72 {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px 96px;
}
.cv-answer-page-v72__header { padding: 56px 0 40px; border-bottom: 1px solid var(--sand3); }
.cv-answer-page-v72__q {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 44px;
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cv-answer-page-v72__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px; color: var(--ink2);
}
.cv-answer-page-v72__body {
  padding: 44px 0;
  font-size: 14px; color: var(--ink2);
  line-height: 1.7;
}
.cv-answer-page-v72__body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: 26px;
  color: var(--ink); margin: 36px 0 14px;
  letter-spacing: -0.005em;
}
.cv-answer-page-v72__body h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold); margin: 28px 0 10px;
}
.cv-answer-page-v72__body ul { padding-left: 20px; }
.cv-answer-page-v72__body li { margin-bottom: 8px; }
.cv-answer-page-v72__cta {
  border: 1px solid var(--gold);
  background: var(--sand);
  border-radius: 4px;
  padding: 32px 36px;
  margin: 40px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
}
.cv-answer-page-v72__related {
  border-top: 1px solid var(--sand3);
  padding-top: 40px;
  margin-top: 40px;
}
.cv-answer-page-v72__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.cv-answer-page-v72__related-link {
  padding: 14px 18px;
  border: 1px solid var(--sand3);
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px; color: var(--ink2);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 140ms;
}
.cv-answer-page-v72__related-link:hover { border-color: var(--gold); color: var(--ink); }
.cv-answer-page-v72__related-link::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* v7.2 Directory grid — 11 categories (4-wide layout) */
.fp-cat-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1024px) { .fp-cat-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 767px)  { .fp-cat-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px)  { .fp-cat-grid { grid-template-columns: 1fr !important; } }

/* ── Featured This Edition (v7.2 logo cards) ─────────────── */
.fp-vendor-logo {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.fp-vendor-logo img {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.92);
}

/* ═══════════════════════════════════════════════════════════════
   ✦ v7.2 SPORTS HUB
═══════════════════════════════════════════════════════════════ */
.cv-sports-hub { background: var(--cream, #FDFAF5); color: var(--ink, #1A1A1A); }
.cv-sports-inner { max-width: 1100px; margin: 0 auto; padding: 0 36px; }
@media (max-width: 600px) { .cv-sports-inner { padding: 0 20px; } }

.cv-sports-hero { padding: 80px 36px 48px; text-align: center; border-bottom: 0.5px solid var(--sand3, #D9CFBC); }
.cv-sports-eyebrow { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold, #B8893E); margin-bottom: 18px; font-weight: 500; }
.cv-sports-h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(36px, 5vw, 56px); line-height: 1.06; color: var(--ink); margin-bottom: 18px; letter-spacing: -0.01em; }
.cv-sports-h1 em { color: var(--gold); font-style: italic; }
.cv-sports-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--ink2, #555); max-width: 640px; margin: 0 auto; line-height: 1.55; }

.cv-sports-banner { padding: 16px 36px; }
.cv-sports-banner .cv-sports-inner { display: flex; gap: 12px; align-items: baseline; }
.cv-sports-banner-success { background: #EFF8F1; border-top: 0.5px solid #C8E0CE; border-bottom: 0.5px solid #C8E0CE; }
.cv-sports-banner-success strong { color: #2D6A3F; font-weight: 500; }
.cv-sports-banner-error { background: #FAF0EE; border-top: 0.5px solid #E5C7C0; border-bottom: 0.5px solid #E5C7C0; }
.cv-sports-banner-error strong { color: #8B3A2A; font-weight: 500; }

.cv-sports-intro { padding: 44px 36px; }
.cv-sports-intro p { font-family: 'Playfair Display', serif; font-size: 17px; line-height: 1.7; color: var(--ink2, #555); max-width: 740px; margin: 0 auto 16px; text-align: center; }
.cv-sports-honest { font-size: 14px; color: var(--ink3, #888); }
.cv-sports-honest em { font-style: italic; }

.cv-sports-leagues { padding: 32px 36px 60px; }
.cv-sports-sport-block { margin-bottom: 48px; }
.cv-sports-sport-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; margin-bottom: 24px; border-bottom: 0.5px solid var(--sand3); }
.cv-sports-sport-eye { font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.cv-sports-sport-count { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13px; color: var(--ink3); }

.cv-sports-league-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--sand3); border: 0.5px solid var(--sand3); }
.cv-sports-league-card { background: white; display: flex; flex-direction: column; }
.cv-sports-league-img { aspect-ratio: 16/10; overflow: hidden; }
.cv-sports-league-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-sports-league-body { padding: 22px 26px; flex: 1; display: flex; flex-direction: column; }
.cv-sports-league-eye { font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 8px; }
.cv-sports-league-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.cv-sports-league-card p { font-size: 13.5px; color: var(--ink2); line-height: 1.55; margin-bottom: 14px; }
.cv-sports-league-foot { margin-top: auto; display: flex; gap: 14px; align-items: center; padding-top: 12px; border-top: 0.5px dashed var(--sand3); }
.cv-sports-league-btn { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; text-decoration: none; }
.cv-sports-league-link { font-size: 12px; color: var(--ink3); text-decoration: none; font-style: italic; }
.cv-sports-league-btn:hover, .cv-sports-league-link:hover { color: var(--navy, #0D1F2D); }

.cv-sports-empty { padding: 48px 36px; }
.cv-sports-empty p { font-family: 'Playfair Display', serif; font-size: 16px; line-height: 1.7; color: var(--ink2); max-width: 720px; margin: 0 auto; text-align: center; font-style: italic; }

.cv-sports-add { background: var(--sand, #F5F0E5); padding: 70px 36px; border-top: 0.5px solid var(--sand3); border-bottom: 0.5px solid var(--sand3); }
.cv-sports-add-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.cv-sports-add-eye { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 12px; }
.cv-sports-add-head h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: var(--ink); margin-bottom: 14px; line-height: 1.1; }
.cv-sports-add-head h2 em { color: var(--gold); font-style: italic; }
.cv-sports-add-head p { font-size: 14.5px; color: var(--ink2); line-height: 1.55; }

.cv-sports-form { max-width: 760px; margin: 0 auto; background: white; padding: 36px; border: 0.5px solid var(--sand3); }
.cv-sports-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cv-sports-form-field { display: flex; flex-direction: column; gap: 6px; }
.cv-sports-form-field-wide { grid-column: 1 / -1; }
.cv-sports-form-label { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink2); font-weight: 500; }
.cv-sports-form-hint { text-transform: none; letter-spacing: 0; font-style: italic; color: var(--ink3); font-weight: 400; }
.cv-sports-form-field input,
.cv-sports-form-field select,
.cv-sports-form-field textarea {
  background: var(--cream); border: 0.5px solid var(--sand3); padding: 11px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink);
  transition: border-color 0.15s;
}
.cv-sports-form-field input:focus,
.cv-sports-form-field select:focus,
.cv-sports-form-field textarea:focus { border-color: var(--gold); outline: none; }

.cv-sports-checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px; padding: 4px 0; }
.cv-sports-checkbox { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink2); cursor: pointer; }
.cv-sports-checkbox input { margin: 0; }

.cv-sports-form-foot { margin-top: 28px; text-align: center; }
.cv-sports-form-submit {
  display: inline-block; padding: 14px 32px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; background: var(--navy, #0D1F2D);
  color: white; border: 1px solid var(--navy); cursor: pointer;
}
.cv-sports-form-submit:hover { background: transparent; color: var(--navy); }
.cv-sports-form-note { margin-top: 14px; font-size: 12px; color: var(--ink3); font-style: italic; }

.cv-sports-coming { padding: 70px 36px; }
.cv-sports-coming-head { text-align: center; margin-bottom: 36px; padding-bottom: 18px; border-bottom: 0.5px solid var(--sand3); }
.cv-sports-coming-eye { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 8px; }
.cv-sports-coming-head h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: var(--ink); }
.cv-sports-coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand3); border: 0.5px solid var(--sand3); }
.cv-sports-coming-item { background: white; padding: 26px 28px; }
.cv-sports-coming-item .num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.10em; margin-bottom: 12px; }
.cv-sports-coming-item h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.cv-sports-coming-item p { font-size: 13.5px; color: var(--ink2); line-height: 1.55; }

.cv-sports-towns { padding: 50px 36px 70px; border-top: 0.5px solid var(--sand3); }
.cv-sports-towns-head { text-align: center; margin-bottom: 24px; }
.cv-sports-towns-eye { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.cv-sports-town-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cv-sports-town-pill { padding: 9px 18px; font-size: 12px; letter-spacing: 0.06em; text-decoration: none; color: var(--ink); border: 0.5px solid var(--sand3); background: white; transition: all 0.15s; }
.cv-sports-town-pill:hover { background: var(--sand); }
.cv-sports-town-pill.is-current { background: var(--navy); color: white; border-color: var(--navy); }

@media (max-width: 767px) {
  .cv-sports-league-grid { grid-template-columns: 1fr; }
  .cv-sports-form-grid { grid-template-columns: 1fr; }
  .cv-sports-checkboxes { grid-template-columns: 1fr; }
  .cv-sports-coming-grid { grid-template-columns: 1fr; }
  .cv-sports-form { padding: 28px 22px; }
  .cv-sports-add-head h2 { font-size: 28px; }
}

/* ── Arrival Guide & Join ── */
.cv-arrival, .cv-join { background: var(--cream, #FDFAF5); }
.cv-arrival-inner, .cv-join-inner { max-width: 880px; margin: 0 auto; padding: 0 36px; }
.cv-arrival-hero, .cv-join-hero { padding: 70px 36px 40px; text-align: center; border-bottom: 0.5px solid var(--sand3, #D9CFBC); }
.cv-arrival-eye, .cv-join-eye { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold, #B8893E); margin-bottom: 14px; font-weight: 500; }
.cv-arrival-hero h1, .cv-join-hero h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(34px, 4.8vw, 52px); line-height: 1.05; color: var(--ink, #1A1A1A); margin-bottom: 16px; }
.cv-arrival-hero h1 em, .cv-join-hero h1 em { color: var(--gold); font-style: italic; }
.cv-arrival-sub, .cv-join-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; color: var(--ink2, #555); }
.cv-arrival-banner { padding: 14px 36px; }
.cv-arrival-banner-success, .cv-join-banner { background: #EFF8F1; border-bottom: 0.5px solid #C8E0CE; text-align: center; }
.cv-arrival-banner-success strong, .cv-join-banner strong { color: #2D6A3F; }
.cv-join-banner-error { background: #FEF2F2; border-bottom: 0.5px solid #FECACA; color: #991B1B; }
.cv-arrival-pending { padding: 60px 36px; text-align: center; }
.cv-arrival-pending h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; margin-bottom: 16px; }
.cv-arrival-pending p { font-size: 15px; line-height: 1.6; color: var(--ink2); margin-bottom: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cv-arrival-cross-link { font-style: italic; font-size: 14px; }
.cv-arrival-form { max-width: 560px; margin: 30px auto; }
.cv-arrival-form-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cv-arrival-form input { flex: 1; min-width: 180px; padding: 12px 14px; border: 0.5px solid var(--sand3); background: white; font-family: inherit; font-size: 14px; }
.cv-arrival-form button { padding: 12px 20px; background: var(--navy, #0D1F2D); color: white; border: none; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; }
.cv-arrival-steps { padding: 50px 36px; }
.cv-arrival-step { display: flex; gap: 24px; padding: 32px 0; border-bottom: 0.5px solid var(--sand3); }
.cv-arrival-step-num { font-family: 'DM Mono', monospace; font-size: 14px; color: var(--gold); flex-shrink: 0; padding-top: 6px; min-width: 36px; }
.cv-arrival-step-body { flex: 1; }
.cv-arrival-step-cat { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink3, #888); }
.cv-arrival-step-body h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: var(--ink); margin: 6px 0 10px; }
.cv-arrival-step-summary { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; color: var(--ink2); margin-bottom: 14px; line-height: 1.55; }
.cv-arrival-step-content { font-size: 14.5px; line-height: 1.7; color: var(--ink2); margin-bottom: 16px; }
.cv-arrival-step-links { display: flex; flex-wrap: wrap; gap: 16px; padding: 14px 0; border-top: 0.5px dashed var(--sand3); }
.cv-arrival-step-links a { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold); text-decoration: none; font-weight: 500; }
.cv-arrival-step-links a:hover { color: var(--navy); }
.cv-arrival-step-contact { font-size: 12.5px; color: var(--ink2); margin-top: 10px; padding-top: 10px; border-top: 0.5px dashed var(--sand3); display: flex; flex-wrap: wrap; gap: 18px; }
.cv-arrival-step-contact strong { font-weight: 500; color: var(--ink); }
.cv-arrival-other-towns { padding: 50px 36px 70px; border-top: 0.5px solid var(--sand3); }
.cv-arrival-eye-small { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; text-align: center; }
.cv-arrival-town-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cv-arrival-town-pill { padding: 8px 16px; font-size: 12px; text-decoration: none; color: var(--ink); border: 0.5px solid var(--sand3); background: white; }
.cv-arrival-town-pill:hover { background: var(--sand, #F5F0E5); }
.cv-arrival-town-pill.is-current { background: var(--navy); color: white; border-color: var(--navy); }
.cv-join-form-section { padding: 50px 36px; }
.cv-join-form { max-width: 480px; margin: 0 auto; padding: 36px; background: white; border: 0.5px solid var(--sand3); }
.cv-join-form label { display: block; margin-bottom: 18px; }
.cv-join-form label > span { display: block; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink2); margin-bottom: 6px; font-weight: 500; }
.cv-join-form input, .cv-join-form select { width: 100%; padding: 11px 14px; border: 0.5px solid var(--sand3); background: var(--cream); font-family: inherit; font-size: 14px; color: var(--ink); box-sizing: border-box; }
.cv-join-form input:focus, .cv-join-form select:focus { border-color: var(--gold); outline: none; }
.cv-join-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cv-join-form-row label { margin-bottom: 0; }
.cv-join-submit { display: block; width: 100%; padding: 14px; background: var(--navy); color: white; border: none; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; margin-top: 10px; }
.cv-join-fineprint { margin-top: 18px; font-size: 12px; font-style: italic; color: var(--ink3); text-align: center; }
@media (max-width: 600px) {
  .cv-join-form-row { grid-template-columns: 1fr; }
  .cv-arrival-step { flex-direction: column; gap: 8px; }
  .cv-arrival-form button { width: 100%; }
}

/* ── Run 18 : Editorial / Magazine Layout ─────────────────────────────────── */

.cv-section {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  padding-left: calc((100vw - 100%) / 2 + 24px);
  padding-right: calc((100vw - 100%) / 2 + 24px);
}
.cv-section--cream { background: var(--cream, #FDFAF5); }
.cv-section--sand  { background: var(--sand,  #F5F0E5); }
.cv-section--navy  { background: var(--navy,  #1A2B4A); }

.cv-section-opener {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 40px;
  align-items: start;
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--sand3, #DDDAD2);
}
.cv-section--navy .cv-section-opener { border-bottom-color: rgba(253,250,245,0.15); }

.cv-section-chapter { display: flex; flex-direction: column; align-items: flex-start; }
.cv-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold, #C9A136);
  line-height: 1;
  display: block;
}
.cv-section-label {
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink3, #A09A8C);
  display: block;
  margin-top: 8px;
  white-space: nowrap;
}
.cv-section--navy .cv-section-label { color: rgba(253,250,245,0.4); }

.cv-section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy, #1A2B4A);
  line-height: 1.1;
  margin: 0 0 18px;
}
.cv-section--navy .cv-section-h2 { color: #FDFAF5; }

.cv-section-sub {
  font-size: 15px;
  color: var(--ink2, #6B6459);
  line-height: 1.75;
  max-width: 580px;
  margin: 0;
}
.cv-section--navy .cv-section-sub { color: rgba(253,250,245,0.72); }

/* Price grids */
.cv-price-grid--single { max-width: 520px; }
.cv-price-grid--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; }
.cv-price-grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cv-price-grid--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Subsection header — Key Packs inside Pros */
.cv-subsection-header { margin-top: 64px; padding-top: 48px; border-top: 0.5px solid var(--sand3, #DDDAD2); margin-bottom: 32px; }
.cv-subsection-eyebrow { font-size: 9px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold, #C9A136); display: block; margin-bottom: 10px; }
.cv-subsection-h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-style: italic; font-weight: 400; color: var(--navy, #1A2B4A); margin: 0 0 12px; }
.cv-subsection-p { font-size: 14px; color: var(--ink2, #6B6459); line-height: 1.7; max-width: 540px; margin: 0; }

/* Charter fallback link */
.cv-charter-fallback { margin-top: 24px; font-size: 13px; color: var(--ink3, #A09A8C); text-align: center; }
.cv-charter-fallback a { color: var(--gold, #C9A136); text-decoration: underline; }

/* Cards on navy section */
.cv-section--navy .cv-price-card {
  background: rgba(253,250,245,0.06);
  border-color: rgba(253,250,245,0.18);
}
.cv-section--navy .cv-price-card .cv-price-tag { color: #FDFAF5; }
.cv-section--navy .cv-price-card .cv-price-sub { color: rgba(253,250,245,0.5); }
.cv-section--navy .cv-price-card .cv-price-features { color: rgba(253,250,245,0.65); }
.cv-section--navy .cv-price-card.featured {
  background: rgba(201,161,54,0.12);
  border-color: rgba(201,161,54,0.5);
}
.cv-section--navy .cv-price-card.dark {
  background: rgba(0,0,0,0.28);
  border-color: rgba(201,161,54,0.25);
}

/* Partnership cards (on cream section) */
.cv-partner-card { background: var(--sand, #F5F0E5); border: 1px solid var(--sand3, #DDDAD2); border-radius: 4px; padding: 32px 28px; }
.cv-partner-card.highlight { border-color: var(--gold, #C9A136); background: var(--cream, #FDFAF5); }
.cv-partner-card-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy, #1A2B4A); margin-bottom: 12px; }
.cv-partner-card-body { font-size: 13px; color: var(--ink2, #6B6459); line-height: 1.7; }

.cv-section-cta { margin-top: 48px; text-align: center; }

@media (max-width: 1100px) {
  .cv-section-h2 { font-size: 44px; }
  .cv-price-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cv-section { padding-top: 56px; padding-bottom: 56px; }
  .cv-section-opener { grid-template-columns: 1fr; gap: 12px; }
  .cv-section-num { font-size: 48px; }
  .cv-section-h2 { font-size: 34px; }
  .cv-price-grid--2, .cv-price-grid--3 { grid-template-columns: 1fr; }
  .cv-subsection-h3 { font-size: 26px; }
}
@media (max-width: 480px) {
  .cv-price-grid--4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RUN 19 — Section navigator + tightened section openers
   ═══════════════════════════════════════════════════════════ */

/* ── Section Navigator ───────────────────────────────────── */
.cv-pricing-nav-wrap {
  padding: 0 0 48px;
  margin-top: -16px;
}
.cv-pricing-nav-eyebrow-label {
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.cv-pricing-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-pricing-nav a {
  display: flex;
  flex-direction: column;
  padding: 18px 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--sand3, #DDDAD2);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  min-height: 100px;
}
.cv-pricing-nav a:hover {
  border-color: var(--gold, #C9A136);
  box-shadow: 0 4px 16px rgba(201,161,54,0.14);
  transform: translateY(-1px);
}
.cv-pricing-nav-num {
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--gold, #C9A136);
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
.cv-pricing-nav-audience {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy, #1A2B4A);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  line-height: 1.3;
}
.cv-pricing-nav-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.25;
  color: var(--ink, #2B2621);
  margin-top: auto;
  display: block;
}

/* ── Tighten section openers ─────────────────────────────── */
.cv-section {
  padding-top: 52px;
  padding-bottom: 52px;
}
.cv-section-opener {
  grid-template-columns: 100px 1fr;
  gap: 28px;
  margin-bottom: 36px;
  padding-bottom: 28px;
}
/* Redesigned number column: compact mono "01 /" format */
.cv-section-num {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 26px !important;
  font-weight: 500;
  color: var(--ink2, #6B6459);
  line-height: 1.1;
}
.cv-section-num::after {
  content: " /";
  color: var(--ink3, #A09A8C);
}
.cv-section--navy .cv-section-num { color: rgba(253,250,245,0.55); }
.cv-section--navy .cv-section-num::after { color: rgba(253,250,245,0.3); }

.cv-section-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.cv-section-h2 {
  font-size: 46px !important;
  margin-bottom: 14px !important;
}
.cv-section-sub {
  font-size: 14px !important;
  line-height: 1.7 !important;
}
.cv-subsection-header {
  margin-top: 48px;
  padding-top: 36px;
}
.cv-subsection-h3 {
  font-size: 28px;
}

@media (max-width: 1100px) {
  .cv-pricing-nav { grid-template-columns: repeat(3, 1fr); }
  .cv-section-h2 { font-size: 38px !important; }
}
@media (max-width: 768px) {
  .cv-pricing-nav {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }
  .cv-pricing-nav a { scroll-snap-align: start; }
  .cv-pricing-nav-wrap { padding-bottom: 36px; }
  .cv-section { padding-top: 40px; padding-bottom: 40px; }
  .cv-section-opener { grid-template-columns: 1fr; gap: 12px; }
  .cv-section-num { font-size: 22px !important; }
  .cv-section-h2 { font-size: 32px !important; }
}

/* ═══════════════════════════════════════════════════════════
   RUN 22 — Viewport breakout for /pricing/ sections
   ═══════════════════════════════════════════════════════════
   Root cause: .cv-section uses calc(-1*(100vw-100%)/2) for
   margin bleed, but sections are direct <body> children so
   100% ≈ 100vw → calc = 0. Run 20's width:100% approach
   still leaves sections constrained because the original
   .cv-section margin calc re-fires with lower calc output.
   Fix: viewport breakout — left:50% + margin-left:-50vw
   positions the element at the left viewport edge regardless
   of any ancestor width constraint. width:100vw fills the
   full viewport. Content is re-centered via padding.
   ═══════════════════════════════════════════════════════════ */

.page.cv-section,
.page.cv-pricing-nav-wrap {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  /* Fallback for browsers without max() */
  padding-left: 24px !important;
  padding-right: 24px !important;
  /* Modern: center content at max 1180px, 24px min gutter */
  padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(24px, calc((100vw - 1180px) / 2)) !important;
}

/* ═══════════════════════════════════════════════════════════
   RUN 23 — Viewport breakout for /ambassador/ page
   ═══════════════════════════════════════════════════════════
   Sections on /ambassador/ use class="page" as direct <body>
   children (no <main> wrapper). The .page rule (max-width:1280px
   + margin:0 auto) constrains them. #how-it-works has an inline
   calc() bleed that evaluates to 0 when parent = 100vw.
   Fix: same viewport breakout as Run 22, scoped via the WP
   body class page-template-page-ambassador. !important overrides
   both the .page CSS rule and the broken inline styles.
   ═══════════════════════════════════════════════════════════ */

body.page-template-page-ambassador section.page {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  /* Fallback for browsers without max() */
  padding-left: 24px !important;
  padding-right: 24px !important;
  /* Center content at max 1180px, 24px min gutter */
  padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(24px, calc((100vw - 1180px) / 2)) !important;
}

/* ── Run 30 Module 1A: Specials Engine ──────────────────────────── */
.vp-specials { margin: 32px 0; padding: 24px; background: var(--cream); border-radius: 8px; }
.vp-specials-title {
  font-size: 1.4rem; color: var(--ink2); margin: 0 0 16px;
  border-bottom: 2px solid var(--gold); padding-bottom: 8px;
}
.vp-specials-list { display: grid; gap: 14px; }
.vp-special-card {
  padding: 16px; background: #fff; border-radius: 6px;
  border-left: 4px solid var(--gold);
}
.vp-special-card.is-active-now { border-left-color: var(--gold2); }
.vp-special-tag { font-size: 0.875rem; color: var(--ink3); margin-bottom: 4px; }
.vp-special-title {
  font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 0 0 8px;
}
.vp-special-description {
  color: var(--ink2); margin: 0 0 10px; line-height: 1.5; font-size: 0.9rem;
}
.vp-special-schedule { font-size: 0.85rem; color: var(--ink3); }
.vp-special-on-now-badge {
  display: inline-block; padding: 2px 8px; background: var(--gold); color: #fff;
  border-radius: 12px; font-size: 0.72rem; margin-left: 8px; vertical-align: middle;
}
.vp-special-cta {
  display: inline-block; margin-top: 12px; padding: 8px 16px;
  background: var(--gold); color: #fff; border-radius: 4px;
  text-decoration: none; font-size: 0.875rem;
}
.vp-special-cta:hover { background: var(--gold2); }
