/* =====================================================
   SOUTH JERSEY FOOD TRUCK — Main Stylesheet
   ===================================================== */

/* --- RESET ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #FAFAF7; color: #1A1512; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* --- VARIABLES -------------------------------------- */
:root {
  --primary: #D4450C;
  --primary-dark: #B03508;
  --primary-light: #FEE8DF;
  --bg: #FAFAF7;
  --bg-warm: #F5F0E8;
  --white: #FFFFFF;
  --text: #1A1512;
  --text-2: #3D3530;
  --muted: #6B6560;
  --muted-light: #A09890;
  --border: #E8E3DC;
  --border-dark: #D0C8BF;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow: 0 2px 8px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.1), 0 16px 48px rgba(0,0,0,0.08);
  --container: 1200px;
}

/* --- TYPOGRAPHY -------------------------------------- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-2); }
strong { font-weight: 700; color: var(--text); }

/* --- LAYOUT ----------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }

/* --- BUTTONS ---------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.18s;
  border: none; text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: #f5f0e8; color: var(--text); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* --- NAVIGATION ------------------------------------- */
.mobile-hamburger {
  display: none;
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1000;
  background: none;
  border: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.mobile-sticky-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.mobile-sticky-bar.visible {
  transform: translateY(0);
}
.mobile-sticky-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
}
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 96px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { object-fit: contain; flex-shrink: 0; transition: transform 0.2s ease; }
.nav-logo-img:hover { transform: scale(1.05); }
.nav-logo-desktop { width: auto; height: 80px; object-fit: contain; display: block; }
.nav-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); text-decoration: none; }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 0.45rem 1.1rem; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1001;
  background: #fff;
  flex-direction: column;
  padding: 3.5rem 1.5rem 1.5rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-close:hover { color: var(--primary); }
.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500; color: var(--text); text-decoration: none;
  font-size: 1.1rem;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--primary); text-decoration: none; }

/* --- FOOTER ----------------------------------------- */
.footer {
  background: #1A1512;
  color: #A09890;
  padding: 3.5rem 0 1.5rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: Georgia, serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #fff; margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; }
.footer-links a { font-size: 0.85rem; color: #A09890; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: #A09890; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* --- HERO ------------------------------------------- */
.hero {
  background: linear-gradient(155deg, #1C1410 0%, #2A1A0E 50%, #3D2510 100%);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
  background: rgba(212,69,12,0.15);
  padding: 0.3rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(212,69,12,0.3);
  margin-bottom: 1.25rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 560px; margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-search {
  display: flex; gap: 0;
  background: #fff;
  border-radius: 999px;
  padding: 0.3rem;
  max-width: 500px; width: 100%;
  margin: 0 auto 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-search input {
  flex: 1; border: none; outline: none; font-size: 1rem;
  background: transparent; color: var(--text);
  padding: 0.5rem 1rem;
}
.hero-search input::placeholder { color: var(--muted-light); }
.hero-search button {
  background: var(--primary); color: #fff; border: none;
  border-radius: 999px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
  flex-shrink: 0;
}
.hero-search button:hover { background: var(--primary-dark); }
.hero-counties {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 3rem;
}
.county-pill {
  font-size: 0.78rem; padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.15s;
  background: rgba(255,255,255,0.05);
}
.county-pill:hover {
  background: rgba(255,255,255,0.12);
  color: #fff; border-color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.hero-stats {
  display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: Georgia, serif; font-size: 2.25rem; color: var(--primary); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* --- SECTION HEADER --------------------------------- */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--muted); font-size: 1rem; }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem; gap: 1rem;
}
.section-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
  margin-bottom: 0.5rem; display: block;
}
.view-all {
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  text-decoration: none; white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* --- TRUCK CARD ------------------------------------- */
.truck-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.truck-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.truck-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  text-decoration: none; color: var(--text);
}
.truck-card-img {
  width: 100%; height: 175px; object-fit: cover;
  background: var(--bg-warm);
  transition: transform 0.3s;
}
.truck-card:hover .truck-card-img { transform: scale(1.03); }
.truck-card-img-wrap { overflow: hidden; }
.truck-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.truck-card-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.18rem 0.6rem; border-radius: 999px; line-height: 1.6;
}
.badge-cuisine { background: #FEF3C7; color: #92400E; }
.badge-county { background: #DCFCE7; color: #166534; }
.badge-price { background: #F0FDF4; color: #15803D; font-family: monospace; }
.badge-featured { background: var(--primary); color: #fff; }
.badge-verified { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; display: inline-flex; align-items: center; gap: 0.25em; font-weight: 600; }
.badge-tag { background: var(--bg-warm); color: var(--muted); border: 1px solid var(--border); }
.truck-card-name {
  font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.35rem; line-height: 1.3;
}
.truck-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; flex: 1; }
.truck-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: 0.875rem;
  border-top: 1px solid var(--border);
}
.truck-card-city { font-size: 0.78rem; color: var(--muted-light); }
.truck-card-arrow { font-size: 1.1rem; color: var(--primary); }
.truck-card-static { cursor: default; }
.truck-card-static:hover { transform: none; box-shadow: var(--shadow); }
.truck-card-cta-link {
  font-size: 0.78rem; font-weight: 600; color: var(--primary);
  text-decoration: none; white-space: nowrap;
}
.truck-card-cta-link:hover { text-decoration: underline; }

/* --- BLOG CARD -------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: box-shadow 0.22s;
}
.blog-card:hover { box-shadow: var(--shadow); text-decoration: none; color: var(--text); }
.blog-card-img { width: 100%; height: 195px; object-fit: cover; background: var(--bg-warm); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.78rem; color: var(--muted-light); margin-bottom: 0.6rem; }
.blog-card-title {
  font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.5rem; line-height: 1.35;
}
.blog-card-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 0.875rem; }
.tag {
  font-size: 0.68rem; padding: 0.15rem 0.55rem; border-radius: 4px;
  background: var(--bg-warm); color: var(--muted); font-weight: 500;
}

/* --- DIRECTORY PAGE --------------------------------- */
.directory-top {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
}
.directory-search {
  display: flex; gap: 0.5rem; margin-bottom: 1.25rem;
}
.directory-search input {
  flex: 1; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; background: var(--bg);
  outline: none; color: var(--text);
}
.directory-search input:focus { border-color: var(--primary); }
.filter-row { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.filter-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--muted-light);
  padding-top: 0.4rem; white-space: nowrap; min-width: 60px;
}
.filter-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn {
  font-size: 0.78rem; padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border); background: var(--white);
  font-weight: 500; color: var(--muted);
  transition: all 0.15s; cursor: pointer;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.directory-count {
  font-size: 0.875rem; color: var(--muted); margin-bottom: 1.75rem;
}
.hidden { display: none !important; }

/* --- TRUCK DETAIL ----------------------------------- */
.truck-hero-img {
  width: 100%; max-height: 420px; object-fit: cover;
  background: var(--bg-warm);
}
.truck-detail { max-width: 900px; margin: 0 auto; padding: 0 1.25rem 4rem; }
.truck-detail-header { padding-top: 2.5rem; margin-bottom: 2rem; }
.truck-detail-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.875rem; }
.truck-detail h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }
.truck-short-desc { font-size: 1.1rem; color: var(--muted); margin-bottom: 0; line-height: 1.6; }
.truck-verified-date { font-size: 0.78rem; color: #15803D; margin: 0.25rem 0 0.5rem; font-weight: 500; letter-spacing: 0.01em; }
.truck-body { margin: 2rem 0; }
.truck-body p {
  font-size: 1rem; line-height: 1.85; color: var(--text-2);
  margin-bottom: 1.25rem;
}
.truck-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin: 1.5rem 0 0.5rem; }
.truck-gallery-item img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 480px) { .truck-gallery { grid-template-columns: 1fr; } .truck-gallery-item img { height: 220px; } }
.truck-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2.5rem 0; }
.truck-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
}
.truck-info-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted-light); margin-bottom: 0.75rem;
}
.truck-info-item { font-size: 0.9rem; color: var(--text-2); margin-bottom: 0.4rem; }
.truck-info-item a { color: var(--primary); }
.truck-info-item a:hover { text-decoration: underline; }
.truck-info-item strong { color: var(--text); }
.specialties-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.specialty {
  background: var(--primary-light); color: var(--primary-dark);
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 500;
}
.truck-cta {
  background: var(--bg-warm); border-radius: var(--radius);
  padding: 2rem; text-align: center; margin-top: 2rem;
}
.truck-cta h3 { margin-bottom: 0.5rem; }
.truck-cta p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

/* --- POST PAGE -------------------------------------- */
.post-header {
  max-width: 780px; margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
}
.post-hero-img { width: 100%; max-height: 480px; object-fit: cover; }
.post-body {
  max-width: 720px; margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
}
.post-body p { font-size: 1.05rem; line-height: 1.88; color: var(--text-2); margin-bottom: 1.25rem; }
.post-body h2 { font-size: 1.6rem; margin: 2.25rem 0 0.875rem; }
.post-body h3 { font-size: 1.25rem; margin: 1.75rem 0 0.625rem; }
.post-body strong { font-weight: 700; color: var(--text); }
.post-body em { font-style: italic; }
.post-body a { color: var(--primary); text-decoration: underline; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { font-size: 1.05rem; line-height: 1.7; color: var(--text-2); margin-bottom: 0.35rem; }
.post-meta {
  font-size: 0.85rem; color: var(--muted-light);
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.post-title { font-size: clamp(1.75rem, 4.5vw, 2.75rem); margin-bottom: 0.875rem; }
.post-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.post-back { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; color: var(--muted); text-decoration: none; margin-bottom: 2rem; }
.post-back:hover { color: var(--primary); }

/* --- FAQ PAGE --------------------------------------- */
.faq-page { max-width: 760px; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
.faq-page h1 { margin-bottom: 0.5rem; }
.faq-page > p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; }
.faq-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--white); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: Georgia, serif; font-size: 1rem; font-weight: 700;
  color: var(--text); cursor: pointer; text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--muted); transition: transform 0.22s;
}
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem; color: var(--text-2); line-height: 1.75;
}
.faq-answer.open { display: block; }
.faq-cta {
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
}
.faq-cta h3 { margin-bottom: 0.5rem; }
.faq-cta p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* --- CONTACT PAGE ---------------------------------- */
.contact-page { max-width: 640px; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
.contact-page h1 { margin-bottom: 0.5rem; }
.contact-page > p { color: var(--muted); margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.radio-group { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.radio-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.95rem; color: var(--text); cursor: pointer;
}
.radio-label input[type="radio"] {
  width: 1.15rem; height: 1.15rem; accent-color: var(--primary); cursor: pointer;
}

.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit;
  background: var(--white); color: var(--text);
  outline: none; transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary); }
.form-textarea { height: 140px; resize: vertical; }
.success-box {
  background: #DCFCE7; border: 1px solid #86EFAC;
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  color: #166534; font-weight: 500; margin-bottom: 1.5rem;
}

/* --- ABOUT PAGE ------------------------------------ */
.about-page { max-width: 820px; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
.about-page h1 { margin-bottom: 0.75rem; }
.about-lead { font-size: 1.125rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.about-page h2 { font-size: 1.5rem; margin: 2.5rem 0 0.875rem; }
.about-page p { font-size: 1rem; line-height: 1.8; color: var(--text-2); margin-bottom: 1.25rem; }
.counties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.75rem; margin: 1.5rem 0 2rem; }
.county-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.875rem 1rem;
  text-align: center;
}
.county-card strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
.county-card span { font-size: 0.75rem; color: var(--muted); }
.about-org {
  background: var(--bg-warm); border-radius: var(--radius);
  padding: 2rem; margin: 2.5rem 0;
}

/* --- BREADCRUMB ------------------------------------ */
.breadcrumb {
  font-size: 0.8rem; color: var(--muted-light);
  display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--muted-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--border-dark); }

/* --- CTA BAND -------------------------------------- */
.cta-band {
  background: var(--primary);
  color: #fff; text-align: center;
  padding: 4rem 1.25rem;
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- 404 ------------------------------------------- */
.not-found {
  text-align: center; padding: 6rem 1.25rem;
  max-width: 500px; margin: 0 auto;
}
.not-found h1 { font-size: 5rem; color: var(--primary); margin-bottom: 0.5rem; }
.not-found p { color: var(--muted); margin-bottom: 2rem; }

/* --- MISC ------------------------------------------ */
.no-results {
  text-align: center; padding: 4rem 1rem; color: var(--muted);
  grid-column: 1 / -1;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- RESPONSIVE ------------------------------------ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .mobile-hamburger { display: flex; top: 3.2rem; }
  .mobile-sticky-bar { display: block; }
  .nav { display: none; }
  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 2rem; }
  .truck-grid, .blog-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .truck-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .directory-search { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat .num { font-size: 1.75rem; }
}

/* ── Sponsor Spotlight (Home) ─────────────────────────────────────────────── */
.sponsor-spotlight {
  background: linear-gradient(135deg, #1a0f00 0%, #2d1a05 60%, #3d2510 100%);
  padding: 3.5rem 0;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}
.sponsor-spotlight-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}
.sponsor-spotlight-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  aspect-ratio: 3/2;
}
.sponsor-spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sponsor-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.sponsor-name {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
.sponsor-name a { color: #fff; text-decoration: none; }
.sponsor-name a:hover { color: #f9a96e; }
.sponsor-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.sponsor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.sponsor-meta a { color: #f9a96e; text-decoration: none; }
.sponsor-meta a:hover { text-decoration: underline; }
.sponsor-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Directory Sponsor Banner ─────────────────────────────────────────────── */
.dir-sponsor-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  background: #fff8f2;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 0.5rem;
}
.dir-sponsor-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.dir-sponsor-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.dir-sponsor-name {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.dir-sponsor-name:hover { color: var(--primary); }
.dir-sponsor-sep { color: var(--muted); }
.dir-sponsor-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dir-sponsor-cta {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.dir-sponsor-cta:hover { text-decoration: underline; }

/* ── Footer Sponsor ───────────────────────────────────────────────────────── */
.footer-sponsor {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.9rem 0;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-sponsor-link {
  color: #f9a96e;
  text-decoration: none;
  font-weight: 600;
}
.footer-sponsor-link:hover { text-decoration: underline; }

/* ── Responsive overrides for sponsor elements ───────────────────────────── */
@media (max-width: 900px) {
  .sponsor-spotlight-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .sponsor-spotlight-img-wrap { max-width: 480px; }
  .sponsor-name { font-size: 1.9rem; }
}
@media (max-width: 600px) {
  .dir-sponsor-tagline { display: none; }
  .sponsor-name { font-size: 1.6rem; }
}

/* ── Logo images ──────────────────────────────────────────────────────────────────── */
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: Georgia, serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }

/* Hero brand text (replaces banner) */
.hero-brand-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* About banner */
.about-banner-wrap { margin-bottom: 1.5rem; text-align: center; }
.about-banner-img { width: auto; height: auto; max-width: min(100%, 900px); max-height: 300px; display: inline-block; border-radius: var(--radius); }

/* About banner responsive rules merged above */
