/* ==========================================================================
   brand.css — Roger Reed (rarpropertygroup.com)
   Verbatim extraction from rogerreed-website/*.html <style> blocks and
   rogerreed-website/js/chat-widget.js inline <style>.
   No new selectors. No value changes. No additions.
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   Source: every page's <style> block (identical declaration)
   ========================================================================== */
:root {
  --navy: #1A2B4A;
  --gold: #C9A96E;
  --gold-light: #E8D5A9;
  --cream: #FAFAF8;
}


/* ==========================================================================
   2. BASE & TYPOGRAPHY
   Source: every page's <style> block (identical declaration)
   Fonts loaded via Google Fonts CDN <link> in <head> of every page:
     Playfair Display (400/500/600/700) + Lato (300/400/700)
   ========================================================================== */
body {
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
  background: #FAFAF8;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}


/* ==========================================================================
   3. BUTTONS
   Source: index.html, about.html, buyers.html, sellers.html, contact.html,
           listings.html, listing-detail.html, home-valuation.html,
           market-reports.html, neighborhoods.html, neighborhoods/*.html
   ========================================================================== */
.btn-gold {
  border: 2px solid #C9A96E;
  color: #C9A96E;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background: #C9A96E;
  color: #1A2B4A;
}

.btn-navy {
  background: #1A2B4A;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-navy:hover {
  background: #253d6b;
}

/* listing-detail.html only */
.btn-gold-outline {
  border: 2px solid #C9A96E;
  color: #C9A96E;
  transition: all 0.3s ease;
}
.btn-gold-outline:hover {
  background: #C9A96E;
  color: #1A2B4A;
}


/* ==========================================================================
   4. NAVIGATION
   Source: every page's <style> block
   ========================================================================== */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A96E;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Active nav state — source: contact.html, neighborhoods.html */
.nav-active {
  color: #C9A96E !important;
}
.nav-active::after {
  width: 100% !important;
}

/* Responsive nav — no Tailwind dependency */
.nav-desktop-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-desktop-links { display: flex; }
}
.nav-mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) {
  .nav-mobile-toggle { display: none; }
}
.nav-mobile-menu {
  display: none;
}
.nav-mobile-menu.open {
  display: block;
}


/* ==========================================================================
   5. HERO
   Source: every page except listing-detail.html
   ========================================================================== */
.hero-overlay {
  background: linear-gradient(to bottom, rgba(26,43,74,0.55) 0%, rgba(26,43,74,0.75) 100%);
}


/* ==========================================================================
   6. CARDS / LISTINGS
   Source: most pages (listing-card)
           listings.html (variant with !important)
           neighborhoods.html (neighborhood-card)
           contact.html (contact-card)
           market-reports.html (stat-card)
           listing-detail.html (stat-chip)
   ========================================================================== */
.listing-card {
  transition: all 0.3s ease;
}
/* Most pages omit !important; listings.html uses !important on the box-shadow.
   Using !important here keeps the listings.html rendering and is a no-op for
   other pages that don't have a competing rule. Verbatim values preserved. */
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,43,74,0.15) !important;
}

.stat-divider {
  border-left: 1px solid rgba(201,169,110,0.4);
}

/* contact.html */
.contact-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,43,74,0.1);
}

/* market-reports.html */
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 2px 12px rgba(26,43,74,0.06);
}

/* listing-detail.html */
.stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 6px;
  background: #fff;
  min-width: 80px;
}
.stat-chip-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  color: #1A2B4A;
  font-weight: 700;
  line-height: 1;
}
.stat-chip-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin-top: 4px;
}


/* ==========================================================================
   7. FORMS
   .form-input has THREE different definitions across pages. In the source
   site each page only loads its own <style> block, so they don't collide.
   For brand.css to be a single shared file, each variant is scoped by a
   body class so all three can coexist. The page templates in the Worker
   must add the matching body class:
     contact.html        → <body class="page-contact">
     listing-detail.html → <body class="page-listing-detail">
     home-valuation.html → <body class="page-valuation">
   This preserves 1:1 rendering. See report for details.

   Source: contact.html (.form-input dark + .form-input-gold + labels)
           listing-detail.html (.form-input white-bg variant + .form-label)
           home-valuation.html (.form-input white-bg variant + .form-label)
           listings.html / home-valuation.html (.filter-select)
   ========================================================================== */

/* ----- contact.html — dark navy section forms ----- */
.page-contact .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
}
.page-contact .form-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.page-contact .form-input:focus {
  border-color: rgba(201,169,110,0.6);
  background: rgba(255,255,255,0.12);
}
.page-contact .form-input option {
  background: #1A2B4A;
  color: #fff;
}

/* ----- listing-detail.html — white-bg form ----- */
.page-listing-detail .form-input {
  width: 100%;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #2D2D2D;
  background: #fff;
  font-family: 'Lato', sans-serif;
}
.page-listing-detail .form-input:focus {
  outline: none;
  border-color: #C9A96E;
  box-shadow: 0 0 0 2px rgba(201,169,110,0.2);
}
.page-listing-detail .form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1A2B4A;
  margin-bottom: 6px;
}

/* ----- home-valuation.html — white-bg form (slightly different) ----- */
.page-valuation .form-input {
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.875rem;
  color: #2D2D2D;
  width: 100%;
  background: #fff;
  transition: border-color 0.2s ease;
  outline: none;
}
.page-valuation .form-input:focus {
  border-color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.page-valuation .form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1A2B4A;
}

/* contact.html — gold card forms */
.form-input-gold {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(26,43,74,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
  color: #1A2B4A;
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.form-input-gold::placeholder {
  color: rgba(26,43,74,0.4);
}
.form-input-gold:focus {
  border-color: #1A2B4A;
  background: rgba(255,255,255,0.85);
}
.form-input-gold option {
  background: #fff;
  color: #1A2B4A;
}

/* contact.html — labels */
.label-gold {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(26,43,74,0.7);
  font-weight: 700;
}
.label-navy {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

/* listings.html / home-valuation.html — filter / select dropdown styling */
.filter-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A2B4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}


/* ==========================================================================
   8. HAVEN CHAT WIDGET
   Source: rogerreed-website/js/chat-widget.js inline <style> block
   (lines 22-148 — verbatim, with COLORS template literals expanded)
   ========================================================================== */
#roger-chat-widget * {
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}
#chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1A2B4A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,43,74,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid #C9A96E;
}
#chat-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(26,43,74,0.5);
}
#chat-bubble svg {
  width: 28px;
  height: 28px;
}
#chat-notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #C9A96E;
  border: 2px solid white;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
#chat-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  width: 360px;
  max-height: 560px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(26,43,74,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}
#chat-window.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
#chat-header {
  background: #1A2B4A;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
#chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C9A96E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #1A2B4A;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}
#chat-header-text p:first-child {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}
#chat-header-text p:last-child {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  margin: 2px 0 0;
}
#chat-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  padding: 4px;
  border-radius: 4px;
}
#chat-close:hover {
  color: white;
}
#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  background: #f8f7f4;
}
.chat-msg {
  display: flex;
  gap: 8px;
  max-width: 85%;
}
.chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-msg.assistant .chat-msg-bubble {
  background: white;
  color: #2D2D2D;
  border: 1px solid #e8e4dc;
  border-radius: 4px 16px 16px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.chat-msg.user .chat-msg-bubble {
  background: #1A2B4A;
  color: white;
  border-radius: 16px 4px 16px 16px;
}
.chat-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #C9A96E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: #1A2B4A;
  align-self: flex-end;
}
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
}
.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A96E;
  animation: typing 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}
#chat-lead-form {
  padding: 12px 16px;
  background: #FAFAF8;
  border-top: 1px solid #e8e4dc;
}
#chat-lead-form p {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px;
}
#chat-lead-form input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 6px;
  color: #2D2D2D;
}
#chat-lead-form button {
  width: 100%;
  padding: 9px;
  background: #1A2B4A;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
#chat-lead-form button:hover {
  background: #253d6b;
}
#chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid #e8e4dc;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  background: white;
}
#chat-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 13px;
  resize: none;
  max-height: 80px;
  line-height: 1.4;
  outline: none;
  color: #2D2D2D;
  font-family: 'Lato', sans-serif;
}
#chat-input:focus {
  border-color: #C9A96E;
}
#chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1A2B4A;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
#chat-send:hover {
  background: #253d6b;
}
#chat-send svg {
  width: 16px;
  height: 16px;
}
#chat-footer-links {
  padding: 8px 16px;
  text-align: center;
  font-size: 10px;
  color: #aaa;
  border-top: 1px solid #f0ede8;
  background: white;
}
#chat-footer-links a {
  color: #C9A96E;
  text-decoration: none;
}
@media (max-width: 400px) {
  #chat-window {
    width: calc(100vw - 16px);
    right: 8px;
    bottom: 90px;
  }
}

/* ----- Quick-reply chips (added for Haven 6-turn flow) -----
   Visual language matches the existing widget — navy text on cream chips with
   gold border, same border-radius/padding as the chat bubbles. Per build plan:
   "styled to MATCH the existing widget's color palette and rounded-corner
   language so they look native to the current widget." */
#chat-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 16px 0;
  background: white;
}
.chat-quick-reply {
  display: inline-block;
  padding: 7px 12px;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  color: #1A2B4A;
  background: #FAFAF8;
  border: 1px solid #C9A96E;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.2;
}
.chat-quick-reply:hover {
  background: #1A2B4A;
  color: white;
  border-color: #1A2B4A;
}
.chat-quick-reply:active {
  transform: translateY(1px);
}


/* ==========================================================================
   9. PAGE-SPECIFIC
   Sections below are scoped to particular pages. They were unique to those
   pages in the source <style> blocks.
   ========================================================================== */

/* ----- shared utility appearing on most pages: section rule ornament ----- */
/* Source: index, about, buyers, sellers, contact, listings, home-valuation,
          market-reports, neighborhoods, all neighborhoods/*.html */
.section-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-rule::before, .section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #C9A96E;
  opacity: 0.5;
}
.section-rule.left::after {
  display: none;
}


/* ----- about.html ----- */
.process-step-line {
  position: relative;
}
.process-step-line::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: rgba(201,169,110,0.3);
}
.process-step-line:last-child::after {
  display: none;
}


/* ----- buyers.html, sellers.html ----- */
/* FAQ accordion */
details summary {
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-icon {
  transition: transform 0.3s ease;
}


/* ----- buyers.html ----- */
/* Timeline */
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100% );
  width: 100%;
  height: 2px;
  background: rgba(201,169,110,0.3);
}


/* ----- sellers.html ----- */
/* Comparison table check / X markers */
.check-item::before {
  content: '✓';
  margin-right: 8px;
  font-weight: 700;
  color: #C9A96E;
}
.x-item::before {
  content: '✕';
  margin-right: 8px;
  font-weight: 700;
  color: #c0392b;
}


/* ----- listings.html ----- */
.heart-btn:hover svg {
  fill: #C9A96E;
  stroke: #C9A96E;
}
.filter-bar-sticky {
  position: sticky;
  top: 72px;
  z-index: 40;
}
.pagination-btn {
  transition: all 0.2s ease;
}
.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-btn:not(:disabled):hover {
  background: #C9A96E;
  color: #1A2B4A;
  border-color: #C9A96E;
}


/* ----- listings.html, listing-detail.html, home-valuation.html ----- */
/* Pulse animation (used by skeleton loaders) */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}


/* ----- listing-detail.html ----- */
.thumb-active {
  border: 3px solid #C9A96E;
}
.detail-table td:first-child {
  color: #888;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-right: 16px;
}
.detail-table td:last-child {
  color: #1A2B4A;
  font-weight: 600;
  font-size: 0.9375rem;
}
.detail-table tr {
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.detail-table tr:last-child {
  border-bottom: none;
}
.detail-table td {
  padding: 10px 0;
}
.gallery-thumb {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.gallery-thumb:hover {
  opacity: 0.8;
}
/* listing-detail.html .form-input + .form-label override the contact.html
   versions when both exist on the same page. In the current site they don't
   collide because each page only includes its own <style> block. Kept here
   as scoped descendants of the detail page wrapper would be the safe path,
   but the source uses bare class selectors — preserved verbatim and noted. */
/* (Detail-page form-input variant intentionally NOT duplicated here; the
   contact.html version is canonical above. listing-detail.html template
   should inline its variant or be re-scoped during Worker migration to
   preserve 1:1 rendering on that page.) */


/* ----- home-valuation.html ----- */
/* form-input variant (white background, navy text) — kept below scoped to
   the valuation form. In the current site this overrides the contact.html
   version because each page only loads its own <style> block. The Worker
   migration must preserve this — see the note in section 7 / report. */
/* (Valuation-page form-input variant intentionally NOT duplicated; see note.) */

.comparison-table tr:nth-child(even) {
  background: rgba(201,169,110,0.06);
}
.iv-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(201,169,110,0.25);
  border-top-color: #C9A96E;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.confidence-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-high { background: rgba(22,163,74,0.12); color: #16a34a; }
.badge-medium { background: rgba(234,179,8,0.12); color: #b45309; }
.badge-low { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-seller { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-balanced { background: rgba(234,179,8,0.12); color: #b45309; }
.badge-buyer { background: rgba(22,163,74,0.12); color: #16a34a; }


/* ----- market-reports.html ----- */
.trend-up { color: #16a34a; }
.trend-down { color: #dc2626; }
.table-row-alt:nth-child(even) {
  background: rgba(201,169,110,0.05);
}
.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
}


/* ----- neighborhoods.html ----- */
.neighborhood-card {
  transition: all 0.3s ease;
}
.neighborhood-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,43,74,0.25);
}
.neighborhood-card:hover .card-overlay {
  background: rgba(26,43,74,0.55);
}
.card-overlay {
  background: linear-gradient(to top, rgba(26,43,74,0.88) 0%, rgba(26,43,74,0.35) 60%, rgba(26,43,74,0.1) 100%);
  transition: background 0.3s ease;
}
table {
  border-collapse: collapse;
}
thead th {
  border-bottom: 2px solid #C9A96E;
}
tbody tr:nth-child(even) {
  background: rgba(201,169,110,0.06);
}
tbody tr {
  border-bottom: 1px solid rgba(26,43,74,0.06);
}


/* ==========================================================================
   10. UTILITIES
   ========================================================================== */
/* home-valuation.html */
.hidden {
  display: none !important;
}


/* ==========================================================================
   10. AREAS WE COVER (homepage section, v1.2 addition)
   New section per Roger request — mirrors his EXP site's Areas We Cover.
   Filtered to Sarasota + Manatee counties only. Phase 2 augments per-area
   with live MLS counts + median price once IDX is wired.
   ========================================================================== */
.areas-covered {
  background: #1A2B4A;
  padding: 96px 24px;
}
.areas-covered-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.areas-covered-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A96E;
  text-align: center;
  margin-bottom: 12px;
}
.areas-covered-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.15;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
.areas-covered-subhead {
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.areas-covered-county-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-top: 32px;
  margin-bottom: 14px;
  text-align: center;
}
.areas-covered-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  line-height: 2;
}
.areas-covered-item {
  padding: 0 14px;
  border-right: 1px solid rgba(201, 169, 110, 0.3);
}
.areas-covered-item:last-child {
  border-right: none;
}
.areas-covered-item:hover {
  color: #C9A96E;
}
