/* ============================================================
   SCOUT CENTRAL FLORIDA — Global Stylesheet
   ============================================================ */

/* 1. RESET + CSS VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0e2a53;
  --blue-mid:   #163d73;
  --blue-light: #edf1f8;
  --gold:       #b8862e;
  --gold-light: #faf4eb;
  --text:       #1a1a1a;
  --muted:      #6b6b6b;
  --faint:      #e8e5e0;
  --bg:         #f5f4f2;
  --white:      #ffffff;
  --border:     rgba(14,42,83,0.1);
}

/* 2. BASE TYPOGRAPHY
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.22; color: var(--blue); font-weight: 600; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.8; }

/* 3. LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1040px; margin: 0 auto; padding: 0 40px; }

.section       { padding: 88px 0; }
.section-alt   { background: var(--bg); }
.section-dark  { background: var(--blue); padding: 88px 0; }
.section-blue  { background: var(--blue); }

.divider    { border: none; border-top: 1px solid var(--faint); }
.divider-sm { border: none; border-top: 1px solid var(--faint); margin: 36px 0; }

.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.s-title { font-size: clamp(1.7rem, 2.8vw, 2.1rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.s-body  { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.85; max-width: 520px; }
.s-head  { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }

/* 4. REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.ready { opacity: 0; transform: translateY(14px); }
.reveal.ready.in { opacity: 1; transform: none; }

/* 5. BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 7px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 11px 22px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.15s; white-space: nowrap; text-decoration: none; }
.btn-white        { background: var(--white); color: var(--blue); }
.btn-white:hover  { background: #f0eeeb; }
.btn-ghost        { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover  { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.5); }
.btn-blue         { background: var(--blue); color: var(--white); }
.btn-blue:hover   { background: var(--blue-mid); }
.btn-gold         { background: var(--gold); color: var(--white); }
.btn-gold:hover   { background: #a07228; }
.btn-outline      { background: transparent; color: var(--blue); border: 1px solid var(--faint); }
.btn-outline:hover { background: var(--blue-light); border-color: #c0cbdb; }
.btn-outline-white       { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* 6. NAVIGATION
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--faint);
  transition: box-shadow 0.25s;
}
nav.scrolled { box-shadow: 0 1px 20px rgba(14,42,83,0.07); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 32px; height: 32px; }
.logo-words { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.logo-name { font-family: 'Lora', serif; font-size: 15px; font-weight: 600; color: var(--blue); letter-spacing: -0.01em; }
.logo-sub  { font-size: 9.5px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a { font-size: 13.5px; font-weight: 400; color: var(--muted); padding: 7px 13px; border-radius: 5px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); font-weight: 500; }
.nav-cta { background: var(--blue) !important; color: var(--white) !important; font-weight: 500 !important; margin-left: 6px; }
.nav-cta:hover { background: var(--blue-mid) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--blue); border-radius: 2px; }

/* 7. BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--faint); padding: 12px 0; }
.breadcrumb-inner { font-size: 12.5px; color: var(--muted); font-weight: 300; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--muted); transition: color 0.15s; }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-sep  { color: var(--faint); }
.breadcrumb-current { color: var(--blue); font-weight: 400; }

/* 8. HERO — HOMEPAGE (split layout)
   ============================================================ */
.hero {
  background: var(--blue); position: relative; overflow: hidden;
}

/* Homepage: tall hero with photo */
.hero-inner:not(.container) {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px;
  align-items: flex-end; min-height: 400px;
  width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 40px;
}
.hero-left { padding: 56px 60px 48px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-label { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.hero h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); color: var(--white); letter-spacing: -0.03em; margin-bottom: 14px; font-weight: 600; line-height: 1.1; }
.hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 460px; line-height: 1.85; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo { position: relative; align-self: flex-end; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo img { display: block; max-height: 380px; width: 100%; object-fit: contain; object-position: bottom center; }
.hero-photo-ph {
  height: 340px; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.15); font-size: 13px; font-weight: 300; text-align: center;
  border: 1px dashed rgba(255,255,255,0.1); border-radius: 8px;
}
.hero-photo-ph svg { opacity: 0.12; }

/* 9. HERO — AREA PAGES (compact, no photo)
   ============================================================ */
.hero.container, .hero > .container.hero-inner {
  padding-top: 44px; padding-bottom: 40px;
}
.hero::after {
  content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  border: 56px solid rgba(255,255,255,0.03); pointer-events: none;
}
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }

/* 10. HERO — COUNTY PAGES (page-hero)
   ============================================================ */
.page-hero { background: var(--blue); padding: 36px 0 32px; position: relative; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); letter-spacing: -0.025em; margin-bottom: 18px; line-height: 1.12; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 560px; line-height: 1.85; margin-bottom: 36px; }
.page-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* 11. STATS BAR — HOMEPAGE
   ============================================================ */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--faint); padding: 36px 0; }
.stats-bar-inner { display: flex; align-items: center; max-width: 1040px; margin: 0 auto; padding: 0 40px; }
.stat-item { flex: 1; text-align: center; padding: 0 24px; border-right: 1px solid var(--faint); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 600; color: var(--blue); line-height: 1; display: block; letter-spacing: -0.02em; }
.stat-label { font-size: 10px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 7px; }

/* 12. STATS BAR — COUNTY PAGES (quick-stats)
   ============================================================ */
.quick-stats { background: var(--white); border-bottom: 1px solid var(--faint); padding: 28px 0; }
.quick-stats-row { display: flex; align-items: stretch; }
.qs-item { flex: 1; text-align: center; padding: 0 20px; border-right: 1px solid var(--faint); }
.qs-item:last-child { border-right: none; }
.qs-num   { font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 600; color: var(--blue); line-height: 1; display: block; letter-spacing: -0.02em; }
.qs-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 5px; }

/* 13. HOMEPAGE — WHO I WORK WITH (TABS)
   ============================================================ */
.aud-tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.aud-tab { padding: 9px 20px; border-radius: 99px; font-size: 13.5px; font-weight: 500; border: 1.5px solid var(--faint); color: var(--muted); cursor: pointer; transition: all 0.15s; background: var(--white); }
.aud-tab:hover { border-color: var(--blue); color: var(--blue); }
.aud-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.aud-panel { display: none; }
.aud-panel.active { display: block; }
.aud-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.aud-card { border: 1px solid var(--faint); border-radius: 10px; padding: 28px 26px; background: var(--white); }
.aud-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.aud-icon svg { width: 18px; height: 18px; }
.aud-card h3 { font-size: 1rem; margin-bottom: 8px; }
.aud-card p  { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 16px; }
.aud-card a  { font-size: 13px; font-weight: 500; color: var(--blue); }
.aud-card a:hover { text-decoration: underline; }

/* 14. HOMEPAGE — COUNTY CARDS
   ============================================================ */
.county-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.county-card { border: 1px solid var(--faint); border-radius: 10px; overflow: hidden; background: var(--white); display: block; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; }
.county-card:hover { box-shadow: 0 8px 32px rgba(14,42,83,0.1); transform: translateY(-2px); }
.county-card-header { padding: 26px 28px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--faint); }
.county-badge { width: 40px; height: 40px; border-radius: 8px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.county-badge svg { width: 18px; height: 18px; }
.county-label { font-size: 10px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.county-name  { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--blue); }
.county-desc  { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.65; margin-top: 6px; }
.county-towns { padding: 16px 28px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.town-pill { font-size: 12.5px; font-weight: 400; color: var(--blue); background: var(--blue-light); padding: 4px 12px; border-radius: 20px; transition: background 0.15s; text-decoration: none; display: inline-block; position: relative; z-index: 2; }
.town-pill:hover { background: #c8d8f0; }
.county-more  { font-size: 12.5px; font-weight: 500; color: var(--gold); text-decoration: none; }
.county-more:hover { text-decoration: underline; }
.county-card-cta { background: var(--blue); border-color: var(--blue); cursor: default; }
.county-card-cta:hover { box-shadow: 0 8px 32px rgba(14,42,83,0.22); transform: translateY(-2px); }
.county-card-cta-inner { display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 28px; gap: 24px; }
.county-cta-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--white); color: var(--blue); font-size: 14px; font-weight: 500; padding: 10px 18px; border-radius: 6px; transition: background 0.15s; align-self: flex-start; text-decoration: none; }
.county-card-cta:hover .county-cta-btn { background: #f0eeeb; }

/* 15. HOMEPAGE — TOWN BROWSE + SEARCH CATEGORIES
   ============================================================ */
.town-browse { margin-top: 44px; }
.town-browse-label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; display: block; }
.town-pills-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.town-pill-browse { padding: 8px 18px; border-radius: 99px; border: 1.5px solid var(--faint); font-size: 13.5px; font-weight: 400; color: var(--text); transition: all 0.15s; display: inline-block; background: var(--white); }
.town-pill-browse:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

.search-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.search-cat { background: var(--blue); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.search-cat:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,42,83,0.2); }
.search-cat-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border-radius: 8px; margin: 20px 20px 0; }
.search-cat-body { padding: 14px 22px 22px; display: flex; align-items: flex-end; justify-content: space-between; flex: 1; }
.search-cat-label { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: var(--white); line-height: 1.25; }
.search-cat-arrow { font-size: 18px; color: var(--gold); }

/* 16. SHARED — COMMUNITY / LIST TABLE
   ============================================================ */
.list-table { border: 1px solid var(--faint); border-radius: 10px; overflow: hidden; }
.list-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 24px 30px; border-bottom: 1px solid var(--faint); text-decoration: none; background: var(--white); transition: background 0.15s; }
.list-row:last-child { border-bottom: none; }
.list-row:hover { background: var(--blue-light); }
.row-meta  { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 5px; }
.row-name  { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: var(--blue); }
.row-loc   { font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold); }
.row-desc  { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.row-tags  { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }
.tag       { font-size: 11px; background: var(--blue-light); color: var(--blue); padding: 2px 10px; border-radius: 4px; }
.row-arrow { font-size: 16px; color: var(--muted); flex-shrink: 0; transition: color 0.15s, transform 0.15s; }
.list-row:hover .row-arrow { color: var(--blue); transform: translateX(3px); }

/* 17. HOMEPAGE — ABOUT, REVIEWS, COMPARE, FAQ GRID, GUIDE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.about-points { display: flex; flex-direction: column; gap: 26px; }
.about-point strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--blue); margin-bottom: 5px; }
.about-point p { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.85; }
.about-photo { border-radius: 10px; overflow: hidden; background: var(--bg); aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 13px; font-weight: 300; position: sticky; top: 80px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-photo svg { opacity: 0.28; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }
.review-card { background: var(--white); border: 1px solid var(--faint); border-radius: 10px; padding: 28px 26px; }
.review-stars  { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text   { font-size: 14.5px; color: var(--text); font-weight: 300; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-name   { font-size: 14px; font-weight: 500; color: var(--blue); }
.review-source { font-size: 12px; color: var(--muted); font-weight: 300; margin-top: 2px; }

/* Compare dark section */
.section-dark .eyebrow { color: var(--gold); }
.section-dark .s-title { color: var(--white); }
.section-dark .s-body  { color: rgba(255,255,255,0.55); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; margin-top: 48px; }
.cmp-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 28px; background: rgba(255,255,255,0.03); text-decoration: none; transition: background 0.15s; }
.cmp-row:hover { background: rgba(255,255,255,0.09); }
.cmp-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.cmp-text  { font-size: 14.5px; color: rgba(255,255,255,0.82); font-weight: 300; line-height: 1.4; }
.cmp-arrow { color: var(--gold); font-size: 15px; flex-shrink: 0; transition: transform 0.15s; }
.cmp-row:hover .cmp-arrow { transform: translateX(3px); }

/* FAQ grid (homepage static) */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { background: var(--bg); border-radius: 10px; padding: 26px 28px; }
.faq-q { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--blue); margin-bottom: 10px; line-height: 1.45; }
.faq-a { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.8; }
.faq-a a { color: var(--blue); border-bottom: 1px solid var(--faint); transition: border-color 0.15s; }
.faq-a a:hover { border-color: var(--blue); }

/* Guide / form */
.guide-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; background: var(--gold-light); border: 1px solid rgba(184,134,46,0.15); border-radius: 12px; padding: 56px 52px; }
.form-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.form-stack input, .form-stack select, .form-stack textarea { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300; padding: 13px 16px; border: 1px solid var(--faint); border-radius: 6px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.15s; width: 100%; }
.form-stack input:focus, .form-stack select:focus, .form-stack textarea:focus { border-color: var(--blue); }
.form-stack input::placeholder, .form-stack textarea::placeholder { color: #c0bdb8; }
.form-stack textarea { resize: vertical; min-height: 72px; }
.form-stack button { background: var(--blue); color: var(--white); padding: 11px; border: none; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500; cursor: pointer; transition: background 0.15s; }
.form-stack button:hover { background: var(--blue-mid); }
.form-note { font-size: 12px; color: var(--muted); font-weight: 300; margin-top: 10px; }

/* 18. AREA PAGES — PAGE GRID, PROSE, CONTENT COMPONENTS
   ============================================================ */
.page-body { padding: 64px 0 88px; }
.page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.prose { min-width: 0; }

.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin-bottom: 14px; margin-top: 48px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--blue); }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose p strong { font-weight: 500; color: var(--text); }
.prose a { color: var(--blue); border-bottom: 1px solid var(--faint); transition: border-color 0.15s; }
.prose a:hover { border-color: var(--blue); }

.home-types-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: 1px solid var(--faint); margin: 24px 0; font-size: 14px; }
.home-types-table thead th { background: var(--blue); color: var(--white); padding: 12px 16px; text-align: left; font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em; }
.home-types-table tbody tr:nth-child(even) { background: var(--bg); }
.home-types-table tbody tr:hover { background: var(--blue-light); }
.home-types-table tbody td { padding: 12px 16px; color: var(--muted); font-weight: 300; border-bottom: 1px solid var(--faint); font-size: 13.5px; }
.home-types-table tbody td:first-child { font-weight: 500; color: var(--blue); font-size: 13px; }
.home-types-table tbody tr:last-child td { border-bottom: none; }

.honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.honest-card { border-radius: 10px; padding: 20px 22px; }
.honest-card.works   { background: #f0faf4; border: 1px solid #b8dfc8; }
.honest-card.consider { background: #fdf6ee; border: 1px solid #e8d0a8; }
.honest-card h4 { font-size: 12.5px; font-weight: 600; margin-bottom: 10px; }
.honest-card.works h4   { color: #1a6035; }
.honest-card.consider h4 { color: #8a5a1a; }
.honest-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.honest-card ul li { font-size: 13px; font-weight: 300; color: var(--text); line-height: 1.55; padding-left: 18px; position: relative; }
.honest-card ul li::before { position: absolute; left: 0; }
.honest-card.works ul li::before    { content: '✓'; color: #1a7a3c; font-weight: 500; }
.honest-card.consider ul li::before { content: '·'; color: var(--gold); font-weight: 700; font-size: 15px; top: -2px; }

.nearby-towns { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.nearby-pill { padding: 7px 16px; border-radius: 99px; border: 1.5px solid var(--faint); font-size: 13px; font-weight: 400; color: var(--text); transition: all 0.15s; display: inline-block; background: var(--white); }
.nearby-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* IDX placeholders */
.idx-ph { background: var(--blue-light); border: 1px solid var(--faint); border-radius: 10px; padding: 44px 32px; text-align: center; margin: 24px 0; }
.idx-ph h3 { font-size: 1.15rem; margin-bottom: 8px; }
.idx-ph p  { color: var(--muted); font-weight: 300; font-size: 14px; max-width: 360px; margin: 0 auto 20px; line-height: 1.8; }
.idx-placeholder { background: var(--blue-light); border: 1px solid var(--faint); border-radius: 10px; padding: 56px 40px; text-align: center; }
.idx-placeholder h3 { font-size: 1.25rem; margin-bottom: 10px; }
.idx-placeholder p  { color: var(--muted); font-weight: 300; font-size: 15px; max-width: 380px; margin: 0 auto 28px; line-height: 1.8; }

/* Area page FAQ accordion */
.faq-list { border: 1px solid var(--faint); border-radius: 10px; overflow: hidden; }
.faq-list .faq-item { border-bottom: 1px solid var(--faint); background: var(--white); }
.faq-list .faq-item:last-child { border-bottom: none; }
.faq-list .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: var(--blue); transition: background 0.15s; line-height: 1.4; }
.faq-list .faq-q:hover { background: var(--blue-light); }
.faq-icon { font-size: 1rem; flex-shrink: 0; margin-left: 12px; color: var(--gold); transition: transform 0.25s; }
.faq-list .faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-list .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: 13.5px; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* Area page sidebar */
.sidebar { position: sticky; top: 80px; }
.sidebar-form { background: var(--bg); border: 1px solid var(--faint); border-radius: 10px; padding: 26px 24px; }
.sidebar-form h3 { font-size: 1rem; margin-bottom: 6px; }
.sidebar-form p  { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.65; margin-bottom: 18px; }
.sidebar-county-link { margin-top: 14px; display: block; background: var(--blue-light); border: 1px solid rgba(14,42,83,0.1); border-radius: 8px; padding: 16px 18px; font-size: 13px; color: var(--blue); font-weight: 400; line-height: 1.55; transition: background 0.15s; }
.sidebar-county-link:hover { background: #dde5f5; }
.sidebar-county-link strong { display: block; font-weight: 500; margin-bottom: 2px; }

/* 19. COUNTY PAGES — LAYOUT + COMPONENTS
   ============================================================ */
.two-col      { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }

.towns-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.town-card { background: var(--white); border: 1px solid var(--faint); border-radius: 10px; overflow: hidden; text-decoration: none; display: block; transition: transform 0.15s, box-shadow 0.15s; }
.town-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,42,83,0.1); }
.town-card-header { padding: 22px 24px 18px; border-bottom: 1px solid var(--faint); }
.town-card-label  { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.town-card-name   { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.town-card-desc   { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.65; }
.town-card-footer { padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.town-card-detail { font-size: 12px; color: var(--muted); font-weight: 300; }
.town-card-more   { font-size: 13px; font-weight: 500; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.15s; }
.town-card:hover .town-card-more { gap: 7px; }

.compare-table { border: 1px solid var(--faint); border-radius: 10px; overflow: hidden; }
.compare-table-header { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--blue); padding: 16px 24px; gap: 12px; }
.compare-table-header span { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.compare-table-header span:not(:first-child) { text-align: center; }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 16px 24px; gap: 12px; border-bottom: 1px solid var(--faint); background: var(--white); transition: background 0.12s; align-items: center; }
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--blue-light); }
.compare-label { font-size: 14px; font-weight: 400; color: var(--text); }
.compare-val   { font-size: 14px; font-weight: 300; color: var(--muted); text-align: center; }
.compare-val.good    { color: #1a6b3a; font-weight: 500; }
.compare-val.neutral { color: var(--muted); }
.compare-val.note    { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.45; }

.callout { background: var(--blue-light); border-left: 3px solid var(--blue); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 28px 0; }
.callout p { font-size: 14.5px; color: var(--blue); font-weight: 400; line-height: 1.75; margin: 0; }
.callout strong { font-weight: 600; }

/* County page FAQ accordion */
.faq-item-wrap { border-bottom: 1px solid var(--faint); background: var(--white); }
.faq-item-wrap:last-child { border-bottom: none; }
.faq-item-wrap .faq-q { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--blue); padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; transition: background 0.12s; }
.faq-item-wrap .faq-q:hover { background: var(--blue-light); }
.faq-q-text   { flex: 1; }
.faq-toggle   { width: 20px; height: 20px; border: 1px solid var(--faint); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); flex-shrink: 0; transition: background 0.15s, transform 0.2s; }
.faq-item-wrap.open .faq-toggle { background: var(--blue); color: var(--white); border-color: var(--blue); transform: rotate(45deg); }
.faq-item-wrap .faq-a { font-size: 14.5px; color: var(--muted); font-weight: 300; line-height: 1.85; padding: 0 24px 20px; display: none; }
.faq-item-wrap.open .faq-a { display: block; }
.faq-item-wrap .faq-a a { color: var(--blue); border-bottom: 1px solid var(--faint); transition: border-color 0.15s; }
.faq-item-wrap .faq-a a:hover { border-color: var(--blue); }

/* County page CTA */
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* County page sidebar card */
.sidebar-card { background: var(--blue); border-radius: 10px; padding: 28px 26px; position: sticky; top: 82px; }
.sidebar-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.sidebar-card p  { font-size: 13.5px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.75; margin-bottom: 20px; }
.sidebar-card .sidebar-form { display: flex; flex-direction: column; gap: 10px; background: none; border: none; padding: 0; }
.sidebar-card .sidebar-form input { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; padding: 11px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; color: var(--white); background: rgba(255,255,255,0.08); outline: none; transition: border-color 0.15s; }
.sidebar-card .sidebar-form input::placeholder { color: rgba(255,255,255,0.35); }
.sidebar-card .sidebar-form input:focus { border-color: rgba(255,255,255,0.4); }
.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 20px 0; }
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-link { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 300; transition: color 0.15s; text-decoration: none; }
.sidebar-link:hover { color: var(--white); }
.sidebar-link-arrow { color: var(--gold); font-size: 14px; }

/* 20. CONTACT PAGE
   ============================================================ */
.page-wrap { padding: 80px 0 96px; }

.contact-grid { display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: start; }
.contact-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.contact-title { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.15; }
.contact-sub   { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.85; max-width: 460px; margin-bottom: 44px; }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 500; color: var(--blue); letter-spacing: 0.01em; }
.field input, .field select, .field textarea { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300; padding: 13px 16px; border: 1px solid var(--faint); border-radius: 7px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.15s, box-shadow 0.15s; width: 100%; appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,42,83,0.07); }
.field input::placeholder, .field textarea::placeholder { color: #b8b5b0; }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b6b6b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 7px; border: none; cursor: pointer; background: var(--blue); color: var(--white); transition: background 0.15s, transform 0.15s; width: 100%; margin-top: 6px; }
.btn-submit:hover    { background: var(--blue-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.form-success { display: none; background: #f0f7f2; border: 1px solid #b8ddc8; border-radius: 10px; padding: 36px 32px; text-align: center; }
.form-success h3 { font-size: 1.2rem; color: #1a5c36; margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: #2d7a50; font-weight: 300; line-height: 1.75; }

.contact-info-panel { position: sticky; top: 82px; display: flex; flex-direction: column; gap: 0; }
.info-block { padding: 28px 0; border-bottom: 1px solid var(--faint); }
.info-block:first-child { padding-top: 0; }
.info-block:last-child  { border-bottom: none; }
.info-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.info-name  { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--blue); margin-bottom: 4px; }
.info-title { font-size: 14px; color: var(--muted); font-weight: 300; margin-bottom: 16px; line-height: 1.6; }
.info-links { display: flex; flex-direction: column; gap: 10px; }
.info-link  { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); font-weight: 300; text-decoration: none; transition: color 0.15s; }
.info-link:hover { color: var(--blue); }
.info-link-icon { width: 34px; height: 34px; background: var(--blue-light); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); transition: background 0.15s; }
.info-link:hover .info-link-icon { background: #dce6f5; }
.info-text { display: flex; flex-direction: column; gap: 1px; }
.info-text-main { font-size: 14px; font-weight: 400; color: var(--text); }
.info-text-sub  { font-size: 12px; color: var(--muted); font-weight: 300; }

.expect-list { display: flex; flex-direction: column; gap: 14px; }
.expect-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.65; }
.expect-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

.sister-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: var(--bg); border-radius: 8px; border: 1px solid var(--faint); text-decoration: none; transition: background 0.15s; }
.sister-link:hover { background: var(--blue-light); }
.sister-link-left  { display: flex; flex-direction: column; gap: 2px; }
.sister-link-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.sister-link-name  { font-size: 14px; font-weight: 500; color: var(--blue); }
.sister-link-desc  { font-size: 12px; color: var(--muted); font-weight: 300; }
.sister-link-arrow { color: var(--muted); font-size: 16px; flex-shrink: 0; transition: transform 0.15s; }
.sister-link:hover .sister-link-arrow { transform: translateX(3px); color: var(--blue); }

/* 21. CTA BANNER (all pages)
   ============================================================ */
.cta-banner { background: var(--blue); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.55); font-weight: 300; font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 22. FOOTER
   ============================================================ */
footer { background: var(--blue); }
.footer-main { padding: 64px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }

/* Brand column */
.footer-name { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; margin-bottom: 10px; }
.footer-descriptor { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.75; margin-bottom: 12px; max-width: 260px; }
.footer-license { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 300; margin-bottom: 16px; }
.footer-sister { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-sister:hover { color: rgba(255,255,255,0.6); }

/* Nav columns */
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links li a:hover { color: var(--white); }
.footer-links li span { font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 300; }

/* Contact column */
.footer-contact-list li a { font-size: 13.5px; }

/* Serving strip */
.footer-serving { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-serving-text { font-size: 13px; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.7; }
.footer-serving-text strong { font-weight: 500; color: rgba(255,255,255,0.55); }

/* Bottom bar */
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-legal { font-size: 11.5px; color: rgba(255,255,255,0.28); font-weight: 300; line-height: 1.7; }
.footer-legal-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 11.5px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-legal-links a:hover { color: var(--white); }
.footer-legal-links span { color: rgba(255,255,255,0.2); font-size: 11px; }

/* 23. RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 900px) {
  /* Homepage hero */
  .hero-inner:not(.container) { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { display: none; }
  .hero-left  { padding: 64px 0 52px; }
  /* Homepage stats */
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex-basis: 50%; border-right: none; border-bottom: 1px solid var(--faint); padding: 16px 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--faint); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  /* County quick stats */
  .quick-stats-row { flex-wrap: wrap; }
  .qs-item { flex-basis: 50%; border-bottom: 1px solid var(--faint); padding: 14px 0; border-right: none; }
  .qs-item:nth-child(odd)        { border-right: 1px solid var(--faint); padding-right: 20px; }
  .qs-item:nth-last-child(-n+2)  { border-bottom: none; }
  /* Grids */
  .county-grid  { grid-template-columns: repeat(2,1fr); }
  .aud-cards    { grid-template-columns: 1fr 1fr; }
  .search-cats  { grid-template-columns: repeat(2,1fr); }
  .about-grid   { grid-template-columns: 1fr; }
  .about-photo  { position: static; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid     { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .guide-wrap   { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  /* Area/county page grids */
  .page-grid    { grid-template-columns: 1fr; }
  .sidebar      { position: static; }
  .honest-grid  { grid-template-columns: 1fr; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 40px; }
  .sidebar-card { position: static; }
  .towns-grid   { grid-template-columns: 1fr; }
  .compare-table-header, .compare-row { grid-template-columns: 2fr 1fr 1fr; gap: 8px; padding: 14px 16px; }
  /* Contact */
  .contact-grid      { grid-template-columns: 1fr; gap: 56px; }
  .contact-info-panel { position: static; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container       { padding: 0 22px; }
  .hero-inner:not(.container) { padding: 0 22px; }
  .stats-bar-inner { padding: 0 22px; }
  /* Nav mobile */
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  nav { position: relative; }
  .nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 62px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--faint);
    padding: 12px 20px 20px; gap: 2px; z-index: 99;
  }
  .nav-open .nav-links a { padding: 10px 12px; }
  /* Hero */
  .hero-left  { padding: 52px 0 48px; }
  .hero-actions, .page-hero-actions, .cta-banner-actions, .cta-actions { flex-direction: column; align-items: center; }
  .btn { justify-content: center; }
  /* Sections */
  .section { padding: 60px 0; }
  .page-hero { padding: 28px 0 24px; }
  /* Grids */
  .county-grid  { grid-template-columns: 1fr; }
  .aud-cards    { grid-template-columns: 1fr; }
  .search-cats  { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .list-row     { grid-template-columns: 1fr; }
  .row-arrow    { display: none; }
  .guide-wrap   { padding: 32px 24px; }
  .compare-table-header, .compare-row { grid-template-columns: 1fr; gap: 4px; }
  .compare-table-header span:not(:first-child), .compare-val { text-align: left; }
  .qs-item { flex-basis: 100%; border-right: none; }
  /* Contact */
  .form-row  { grid-template-columns: 1fr; gap: 0; }
  .page-wrap { padding: 56px 0 72px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .s-head      { flex-direction: column; align-items: flex-start; }
}
