/* ============================================================
   BOISE FENCE PROS  |  style.css
   No external dependencies. No icon fonts. No SVGs.
   ============================================================ */

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Variables --------------------------------------------- */
:root {
  --blue:        #0047bf;
  --blue-dark:   #0039a0;
  --blue-light:  #ebf0fb;
  --orange:      #ff6600;
  --orange-dark: #e05500;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-500:    #64748b;
  --gray-900:    #0f172a;
  --radius:      6px;
  --max-w:       1180px;
}

/* --- Layout helpers ---------------------------------------- */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section      { padding: 72px 0; }
.section-sm   { padding: 48px 0; }
.bg-gray      { background: var(--gray-100); }
.bg-blue-soft { background: var(--blue-light); }
.bg-gradient  { background: linear-gradient(135deg, #eef3fc 0%, #fff7f2 100%); }
.text-center  { text-align: center; }

/* --- Typography -------------------------------------------- */
.heading-xl { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
.heading-lg { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; }
.heading-md { font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 700; line-height: 1.3; }
.heading-sm { font-size: 1.125rem; font-weight: 700; }
.subhead    { font-size: 1.125rem; color: var(--gray-500); line-height: 1.7; max-width: 640px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .heading-lg { margin-bottom: 12px; }

/* ============================================================
   BUTTONS  — sized explicitly, no icons, no ambiguity
   ============================================================ */
.btn {
  display: inline-block;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
  white-space: nowrap;
  text-align: center;
}
.btn-blue   { background: var(--blue);   color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline-blue  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover  { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline-white:hover { background: #fff; color: var(--blue); }
.btn-lg { padding: 13px 30px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-block { display: block; width: 100%; }

/* Alias old class names used in generated HTML */
.btn-primary      { background: var(--blue);   color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-accent       { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-accent:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline      { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.top-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
}
.top-bar a { color: #fff; text-decoration: underline; font-weight: 600; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img { height: 72px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { font-size: 15px; color: var(--gray-900); transition: color .15s; }
.site-nav > a:hover { color: var(--blue); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-900);
  padding: 0;
  transition: color .15s;
}
.dropdown-toggle:hover { color: var(--blue); }
.dropdown-toggle .chev {
  font-size: 11px;
  display: inline-block;
  transition: transform .2s;
  margin-top: 1px;
}
.dropdown.open .dropdown-toggle .chev { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 210px;
  padding: 6px 0;
  z-index: 200;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--gray-900);
  transition: background .12s, color .12s;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--blue); }

.header-cta { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  background: var(--blue-light);
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 20px;
  color: var(--blue);
  line-height: 1;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; }
.mobile-nav.open { display: flex; justify-content: flex-end; }
.mobile-nav-panel {
  background: #fff;
  width: min(320px, 88vw);
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--gray-500);
  padding: 4px 8px;
  line-height: 1;
}
.mobile-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--gray-900);
  transition: background .12s;
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--blue); }
.mobile-collapsible-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-900);
  transition: background .12s;
}
.mobile-collapsible-trigger:hover { background: var(--gray-100); color: var(--blue); }
.mob-chev { font-size: 11px; transition: transform .2s; display: inline-block; }
.mobile-collapsible-trigger.open .mob-chev { transform: rotate(180deg); }
.mobile-sub { display: none; padding-left: 16px; }
.mobile-sub.open { display: block; }
.mobile-sub a { font-size: 14px; color: var(--gray-500); padding: 7px 12px; }
.mobile-divider { border-top: 1px solid var(--gray-200); margin: 10px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--gray-100); padding: 56px 0 24px; color: var(--gray-500); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: var(--gray-900); font-weight: 600; margin-bottom: 14px; font-size: 15px; }
.footer-logo img { height: 72px; width: auto; margin-bottom: 10px; }
.footer-col p { line-height: 1.75; font-size: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-links a { color: var(--gray-500); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: var(--blue); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.footer-contact-item a { color: var(--gray-500); transition: color .15s; }
.footer-contact-item a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--gray-500); }
.footer-legal a:hover { color: var(--blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.hero-content { position: relative; z-index: 1; padding: 72px 0; width: 100%; }
.hero h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.hero h2 { font-size: clamp(1.2rem, 3vw, 1.875rem); font-weight: 600; color: rgba(255,255,255,.88); margin-bottom: 28px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.9); font-weight: 600; font-size: 14px; }
.hero-badge .badge-icon { color: var(--orange); font-size: 16px; }
.hero-inner { min-height: 380px; }
.hero-inner h1 { font-size: clamp(1.875rem, 5vw, 3rem); }

/* No-image hero */
.hero-gradient { background: linear-gradient(135deg, #eef3fb 0%, #fff7f2 100%); padding: 72px 0; text-align: center; }
.hero-gradient h1 { font-size: clamp(1.875rem, 5vw, 3.25rem); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; }
.hero-gradient p { font-size: 1.125rem; color: var(--gray-500); max-width: 640px; margin: 0 auto 28px; line-height: 1.7; }

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; }
.grid-2-fixed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.two-col { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col.items-center { align-items: center; }

.card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.card-body { padding: 20px; }
.card-img-wrap { overflow: hidden; }
.card img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.card:hover img { transform: scale(1.04); }
.card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.card p  { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

/* ============================================================
   SPECIFIC SECTIONS
   ============================================================ */

/* Why choose us bullet list */
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bullet-list li { display: flex; align-items: flex-start; gap: 12px; }
.bullet-dot { width: 8px; height: 8px; min-width: 8px; background: var(--blue); border-radius: 50%; margin-top: 8px; }
.bullet-list strong { color: var(--gray-900); }
.bullet-list span { color: var(--gray-500); font-size: 15px; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.step-number { width: 60px; height: 60px; background: var(--blue); color: #fff; border-radius: 50%; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

/* Testimonials */
.testimonial-card { background: #fff; border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 24px; transition: border-color .18s; }
.testimonial-card:hover { border-color: var(--blue); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; font-size: 18px; color: #f59e0b; }
.testimonial-card blockquote { color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; font-style: italic; font-size: 15px; }
.testimonial-card cite { font-weight: 600; color: var(--gray-900); font-style: normal; font-size: 15px; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; text-align: center; }
.stat-number { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-label { color: var(--gray-500); font-size: 14px; }

/* CTA sections */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, #003399 100%); color: #fff; text-align: center; padding: 72px 0; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; opacity: .9; max-width: 560px; margin: 0 auto 28px; }
.cta-light { background: var(--blue-light); text-align: center; padding: 56px 0; }
.cta-light h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; margin-bottom: 12px; }
.cta-light p { color: var(--gray-500); max-width: 560px; margin: 0 auto 24px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Images */
.rounded-img { border-radius: var(--radius); box-shadow: 0 8px 28px rgba(0,0,0,.12); width: 100%; object-fit: cover; }
.img-tall { height: 500px; }
.img-med  { height: 400px; }

/* Info box (contact / location sidebar) */
.info-box { background: #fff; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,.08); padding: 28px; }
.info-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.info-item-icon { width: 24px; text-align: center; color: var(--blue); font-size: 16px; flex-shrink: 0; padding-top: 2px; }
.info-item .label { font-weight: 600; color: var(--gray-900); font-size: 14px; margin-bottom: 2px; }
.info-item .value { color: var(--gray-500); font-size: 14px; }

/* Fence materials CTA box */
.materials-cta-box { background: var(--blue-light); border-radius: var(--radius); padding: 40px; text-align: center; }
.materials-cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.materials-cta-box h4 { color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; font-size: 14px; }
.materials-cta-box p { color: var(--gray-500); max-width: 500px; margin: 0 auto 20px; font-size: 15px; }

/* Page hero (inner pages with image) */
.page-hero { position: relative; min-height: 360px; display: flex; align-items: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .4; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.32); }
.page-hero-content { position: relative; z-index: 1; width: 100%; }
.page-hero h1 { font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-hero-tagline { color: rgba(255,255,255,.88); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.page-hero-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.page-hero-card { background: rgba(0,71,191,.88); color: #fff; padding: 20px 28px; border-radius: var(--radius); display: none; font-size: 14px; }
.page-hero-card .card-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.page-hero-card .card-hours { margin-bottom: 8px; }
.page-hero-card .card-phone { font-weight: 700; font-size: 17px; }
@media (min-width: 768px) { .page-hero-card { display: block; } }

/* Value cards (About page) */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.value-card { border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: border-color .18s; }
.value-card:hover { border-color: var(--blue); }
.value-card .vc-icon { font-size: 36px; color: var(--blue); margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--gray-500); font-size: 13px; line-height: 1.6; }

/* Area badges */
.area-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.area-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); color: var(--gray-900); font-weight: 500; padding: 6px 14px; border-radius: 999px; font-size: 14px; }

/* Contact page */
.contact-info-card { background: var(--gray-100); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.contact-icon-wrap { background: var(--blue); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-label { font-weight: 600; color: var(--gray-900); font-size: 14px; margin-bottom: 3px; }
.contact-value { color: var(--gray-500); font-size: 14px; }
.contact-value a { color: var(--blue); }
.why-bullets { list-style: none; background: var(--blue-light); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.why-bullets li { display: flex; align-items: center; gap: 10px; color: var(--gray-500); font-size: 14px; }
.why-bullets li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* Service cards (location pages) */
.service-card { border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 24px; transition: border-color .18s, box-shadow .18s; display: block; border-top: 4px solid var(--blue); }
.service-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.service-card p { color: var(--gray-500); font-size: 13px; line-height: 1.6; }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-500); font-size: 14px; }
.check-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: 14px; margin-top: 1px; }

/* Blog index */
.blog-card { display: block; border: 2px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: box-shadow .18s, border-color .18s; background: #fff; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); border-color: var(--blue); }
.blog-card-img { height: 190px; background-size: cover; background-position: center; }
.blog-card-body { padding: 18px; }
.blog-card-date { font-size: 12px; color: var(--gray-500); margin-bottom: 6px; }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.4; transition: color .15s; }
.blog-card:hover h3 { color: var(--blue); }
.blog-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { display: inline-block; margin-top: 10px; font-weight: 600; color: var(--blue); font-size: 13px; }

/* Blog pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 48px; flex-wrap: wrap; }
.page-btn { border: 2px solid var(--gray-200); background: #fff; border-radius: var(--radius); padding: 8px 16px; font-weight: 600; cursor: pointer; transition: all .18s; font-size: 14px; font-family: inherit; }
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-btn:disabled { opacity: .45; cursor: not-allowed; }

/* Article / blog post */
.article-hero { position: relative; height: 380px; background-size: cover; background-position: center; display: flex; align-items: center; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.article-hero-content { position: relative; z-index: 1; color: #fff; }
.article-hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.article-date { font-size: 13px; opacity: .8; }
.article-body { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.article-body h2 { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); margin: 40px 0 14px; }
.article-body h3 { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); margin: 28px 0 10px; }
.article-body p { color: var(--gray-500); line-height: 1.8; margin-bottom: 18px; }
.article-body ul, .article-body ol { color: var(--gray-500); line-height: 1.8; padding-left: 22px; margin-bottom: 18px; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--blue); text-decoration: underline; }
.article-body strong { color: var(--gray-900); }
.article-body img { border-radius: var(--radius); box-shadow: 0 4px 16px rgba(0,0,0,.1); margin: 20px 0; }
.article-body figcaption { text-align: center; color: var(--gray-500); font-size: 13px; font-style: italic; margin-top: 8px; }
.article-cta { background: linear-gradient(135deg, var(--blue-light), #fff7f2); border-radius: var(--radius); padding: 28px; margin-top: 40px; }
.article-cta h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 10px; }
.article-cta p { color: var(--gray-500); margin-bottom: 18px; font-size: 15px; }

/* Location cards */
.location-card { display: block; border: 2px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: border-color .18s; }
.location-card:hover { border-color: var(--blue); }
.location-card-img { height: 170px; overflow: hidden; }
.location-card-img div { height: 100%; background-size: cover; background-position: center; transition: transform .3s; }
.location-card:hover .location-card-img div { transform: scale(1.05); }
.location-card-body { padding: 14px; text-align: center; }
.location-card-body h3 { font-weight: 700; font-size: 15px; color: var(--gray-900); transition: color .15s; }
.location-card:hover .location-card-body h3 { color: var(--blue); }

/* Prose pages (privacy, terms) */
.prose-page { max-width: 760px; margin: 0 auto; }
.prose-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 28px; }
.prose-page h2 { font-size: 1.375rem; font-weight: 700; margin: 28px 0 10px; color: var(--gray-900); }
.prose-page p { color: var(--gray-500); line-height: 1.8; margin-bottom: 14px; }
.prose-page ul { color: var(--gray-500); padding-left: 20px; margin-bottom: 14px; line-height: 1.8; }

/* Sitemap */
.sitemap-section h2 { font-size: 15px; font-weight: 700; margin-bottom: 12px; padding-bottom: 6px; border-bottom: 2px solid var(--blue); }
.sitemap-section ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sitemap-section a { color: var(--gray-500); font-size: 14px; transition: color .15s; }
.sitemap-section a:hover { color: var(--blue); }

/* 404 */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--gray-100); }
.page-404 h1 { font-size: 6rem; font-weight: 900; color: var(--blue); line-height: 1; }
.page-404 p { font-size: 1.25rem; color: var(--gray-500); margin: 14px 0 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { min-height: 400px; }
  .hero-gradient { padding: 48px 0; }
  .cta-section, .cta-light { padding: 48px 0; }
  .article-hero { height: 260px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-legal { flex-direction: column; gap: 6px; }
  .grid-2-fixed { grid-template-columns: 1fr; }
  .page-hero-flex { flex-direction: column; }
}
