/* ============================================================
   Robert Street Auto Sales — SEO Site Stylesheet
   Brand: black body, white header, #326ef1 blue accent
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --black: #000000;
  --black-mid: #0a0a0a;
  --black-card: #111111;
  --black-border: #222222;
  --blue: #326ef1;
  --blue-hover: #2a5fd9;
  --blue-light: #7aabff;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text: #ffffff;
  --text-light: #cccccc;
  --text-muted: #999999;
  --text-dark: #111111;
  --green: #28a745;
  --red: #dc3545;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, monospace;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow: 0 4px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.5), 0 4px 6px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.5), 0 10px 10px rgba(0,0,0,0.2);
  --transition: 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::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: var(--font-sans);
  color: var(--white);
  background: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue);
}

ul, ol {
  padding-left: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ---- Containers ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Sections ---- */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: #000000;
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: var(--text-light);
}

.section--light {
  background: #111111;
}

.section--light h1,
.section--light h2,
.section--light h3 {
  color: var(--white);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section--dark .section-subtitle {
  color: var(--text-light);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* btn-gold is kept for template compatibility — now renders blue */
.btn-gold {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: #000000;
}

.section--dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.section--dark .btn-outline:hover {
  background: var(--white);
  color: #000000;
}

/* ---- Navigation ---- */
.site-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--blue);
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: #444444;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--blue);
  background: rgba(50,110,241,0.06);
}

.nav-phone-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  margin-left: 0.5rem;
}

.nav-phone-cta:hover {
  background: var(--blue-hover);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 40%, #0d1a3d 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(50,110,241,0.15);
  border: 1px solid rgba(50,110,241,0.4);
  color: var(--blue-light);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-accent {
  color: var(--blue);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-address {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* ---- Inventory Highlights ---- */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.inventory-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.inventory-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.inventory-card--featured {
  border-color: var(--blue);
  border-width: 2px;
}

.inventory-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.inventory-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.inventory-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.inventory-card-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.inventory-card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.inventory-card-list li {
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.inventory-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---- Why Choose Us ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  padding: 1.5rem;
  border-left: 3px solid var(--blue);
  background: rgba(50,110,241,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Cities Grid ---- */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.city-link {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.city-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.cities-cta {
  text-align: center;
}

/* ---- Blog Grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--blue);
}

.blog-card-category {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-title--list {
  font-size: 1.2rem;
}

.blog-card-title a {
  color: var(--white);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--blue);
}

.blog-card-excerpt {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--black-border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.read-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.read-more:hover {
  color: var(--blue-light);
}

.blog-preview-cta,
.cities-cta {
  text-align: center;
  margin-top: 2rem;
}

.blog-coming-soon {
  text-align: center;
  padding: 3rem;
  background: var(--black-card);
  border-radius: var(--radius-lg);
}

.post-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- Blog Post Page ---- */
.blog-post {
  padding: 3rem 0 5rem;
}

.blog-post-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.post-category-badge {
  display: inline-block;
  background: rgba(50,110,241,0.15);
  color: var(--blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.meta-sep {
  color: var(--black-border);
}

/* ---- Prose / Blog Content ---- */
.prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
}

.prose h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--black-border);
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  font-weight: 700;
  color: var(--white);
}

.prose a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--blue);
}

.prose blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  background: var(--black-card);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.back-link {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--black-border);
}

.back-link a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.back-link a:hover {
  color: var(--blue);
}

/* ---- FAQ Section ---- */
.faq-section {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
}

.faq-section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #1a1a1a;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- CTA Box ---- */
.cta-box {
  background: #0a0a0a;
  padding: 4rem 0;
  margin: 4rem 0 0;
  border-top: 1px solid var(--black-border);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtext {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-address {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---- Page Hero (non-homepage) ---- */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  color: var(--white);
  padding: 3.5rem 0;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.breadcrumb-list li {
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-list a:hover {
  color: var(--blue);
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--white);
  font-weight: 500;
}

/* ---- Location Page ---- */
.location-page, .vehicle-page {
  padding-bottom: 0;
}

.location-hero, .vehicle-hero {
  background: linear-gradient(135deg, #000000 0%, #0d1a3d 100%);
  padding: 3.5rem 0;
  color: var(--white);
}

.location-hero-content, .vehicle-hero-content {
  max-width: 720px;
}

.location-title, .vehicle-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(50,110,241,0.15);
  border: 1px solid rgba(50,110,241,0.4);
  color: var(--blue-light);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.location-content, .vehicle-content {
  padding: 3rem 0 4rem;
}

.location-content h2, .vehicle-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  color: var(--white);
}

.location-content h2:first-child, .vehicle-content h2:first-child {
  margin-top: 0;
}

.location-content p, .vehicle-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.feature-list {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.feature-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---- Vehicle Specs ---- */
.vehicle-category-badge {
  display: inline-block;
  background: rgba(50,110,241,0.15);
  border: 1px solid rgba(50,110,241,0.4);
  color: var(--blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

.vehicle-quick-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.stat-sep {
  color: var(--black-border);
}

.vehicle-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.vehicle-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.spec-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.spec-value--excellent { color: var(--green); }
.spec-value--outstanding { color: #0d7a0d; }
.spec-value--good { color: var(--blue-light); }
.spec-value--average { color: #e67e22; }

.highlight-list {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.highlight-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--black-border);
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li::before {
  content: '●';
  position: absolute;
  left: 0.25rem;
  color: var(--blue);
  font-size: 0.7rem;
  top: 0.65rem;
}

.competitor-list {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.competitor-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.competitor-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---- Nearby Locations / Other Vehicles ---- */
.nearby-locations, .other-vehicles {
  padding: 3rem 0;
  background: var(--black-card);
}

.nearby-locations h2, .other-vehicles h2 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.nearby-link {
  background: #1a1a1a;
  border: 1px solid var(--black-border);
  color: var(--text-light);
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition);
}

.nearby-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.nearby-link--more {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.nearby-link--more:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

/* ---- Blog Index ---- */
.blog-index {
  padding-bottom: 0;
}

.blog-listing {
  padding-top: 3rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.category-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.empty-state p {
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 1rem;
}

/* ---- Footer ---- */
.site-footer {
  background: #0a0a0a;
  color: var(--text-light);
  padding: 4rem 0 2rem;
  margin-top: 0;
  border-top: 1px solid var(--black-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--blue);
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.footer-address {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.footer-address strong {
  color: var(--white);
}

.footer-address a {
  color: var(--blue-light);
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--blue);
}

.footer-hours {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-service-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-copyright a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-copyright a:hover {
  color: var(--white);
}

/* ---- hero-cta-row on location/vehicle pages ---- */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--blue); }
.text-white { color: var(--white); }
.text-navy { color: var(--white); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.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: 768px breakpoint ---- */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-top: 1px solid var(--gray-200);
  }
  .nav-links.is-open { display: flex; }
  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .nav-phone-cta {
    margin-left: 0;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .site-nav { position: relative; }

  /* Hero */
  .hero { padding: 4rem 0 3rem; }
  .hero-title { font-size: 1.875rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }

  /* Grids */
  .inventory-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid--full { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vehicle-specs-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }

  /* Vehicle/Location hero */
  .vehicle-quick-stats { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .stat-sep { display: none; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* Breadcrumb */
  .breadcrumb-list { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .vehicle-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.625rem; }
  .blog-post-title { font-size: 1.5rem; }
}
