/* ==========================================
   Chicago Style Dog — Design System
   Palette: Mustard, Vienna Red, Relish Green
   Fonts: Outfit (display) + DM Sans (body)
   ========================================== */

/* --- Fonts --- */
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  --mustard: #E8B830;
  --mustard-light: #FFF8E1;
  --mustard-dark: #C49A1A;
  --vienna-red: #C62828;
  --vienna-red-light: #FFEBEE;
  --vienna-red-dark: #8E0000;
  --relish: #2E7D32;
  --relish-light: #E8F5E9;
  --poppy: #2C2C2C;
  --cream: #FFFAF3;
  --white: #FFFFFF;
  --charcoal: #444444;
  --charcoal-light: #777777;
  --slate: #AAAAAA;
  --border: #E8E4DE;

  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --max-width: 1200px;
  --nav-height: 72px;
  --border-radius: 12px;
  --border-radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
  --shadow-md: 0 4px 20px rgba(44,44,44,0.08);
  --shadow-lg: 0 8px 40px rgba(44,44,44,0.12);

  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--poppy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vienna-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--vienna-red-dark); }
ul { list-style: none; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--white); }
.section-title { text-align: center; margin-bottom: var(--space-sm); }
.section-subtitle { text-align: center; color: var(--charcoal-light); margin-bottom: var(--space-xl); font-size: 1.1rem; }
.section-cta { text-align: center; margin-top: var(--space-lg); }
.content-page { max-width: 800px; }
.content-page h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.content-page p { margin-bottom: var(--space-md); }
.content-page ul { margin-bottom: var(--space-md); padding-left: var(--space-md); list-style: disc; }
.content-page li { margin-bottom: var(--space-xs); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--poppy); }
.heading-lg { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: var(--space-md); }
.heading-md { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: var(--space-sm); }
.heading-sm { font-size: 1.2rem; margin-bottom: var(--space-xs); }
.text-lg { font-size: 1.15rem; line-height: 1.7; color: var(--charcoal); }
.text-sm { font-size: 0.875rem; }
.text-muted { color: var(--charcoal-light); }

/* --- Navigation --- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,250,243,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--poppy); text-decoration: none; }
.nav-logo:hover { color: var(--vienna-red); }
.nav-logo-icon { font-size: 1.5rem; }
.nav-links { display: flex; gap: var(--space-md); align-items: center; }
.nav-link { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--charcoal); padding: 6px 0; border-bottom: 2px solid transparent; transition: all var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--vienna-red); border-bottom-color: var(--vienna-red); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--poppy); transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--vienna-red) 0%, var(--vienna-red-dark) 100%);
  color: var(--white);
  text-align: center;
}
.hero-title { font-size: clamp(2.5rem, 7vw, 4.5rem); color: var(--white); margin-bottom: var(--space-sm); letter-spacing: -0.02em; }
.hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.4rem); opacity: 0.9; margin-bottom: var(--space-lg); font-weight: 400; }
.hero-cta { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 12px 28px; border-radius: var(--border-radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--mustard); color: var(--poppy); border-color: var(--mustard); }
.btn-primary:hover { background: var(--mustard-dark); border-color: var(--mustard-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.section .btn-secondary { color: var(--poppy); border-color: var(--border); }
.section .btn-secondary:hover { border-color: var(--poppy); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* --- Stats Bar --- */
.stats-bar { background: var(--white); padding: var(--space-lg) 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--vienna-red); }
.stat-label { font-size: 0.9rem; color: var(--charcoal-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Card Grid --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-md); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* --- Location Card --- */
.location-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--border-radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; color: inherit;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.card-image { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--mustard-light); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.location-card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 4rem; }
.card-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; font-family: var(--font-display); }
.badge-featured { background: var(--mustard); color: var(--poppy); }
.card-body { padding: var(--space-sm); flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.card-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--charcoal-light); flex-wrap: wrap; }
.card-rating { color: var(--mustard-dark); font-weight: 600; }
.stars { color: var(--mustard); }
.stars-sm { font-size: 0.8rem; color: var(--mustard); }
.card-neighborhood { background: var(--relish-light); color: var(--relish); padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; }
.card-price { font-weight: 600; color: var(--relish); }
.card-desc { font-size: 0.875rem; color: var(--charcoal-light); line-height: 1.5; }

/* --- Lists Grid --- */
.lists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.list-card { background: var(--cream); padding: var(--space-md); border-radius: var(--border-radius); border: 1px solid var(--border); }
.list-card h3 { color: var(--vienna-red); margin-bottom: var(--space-xs); }
.list-card p { font-size: 0.9rem; color: var(--charcoal-light); margin-bottom: var(--space-sm); }
.list-locations { display: flex; flex-direction: column; gap: 8px; }
.list-locations li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.list-locations li:last-child { border-bottom: none; }
.list-locations a { font-weight: 600; }

/* --- Neighborhood Grid --- */
.hood-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-sm); }
.hood-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--space-md); background: var(--white); border-radius: var(--border-radius);
  border: 2px solid var(--border); text-align: center; text-decoration: none; color: var(--poppy);
  transition: all var(--transition);
}
.hood-card:hover { border-color: var(--vienna-red); color: var(--vienna-red); transform: translateY(-2px); }
.hood-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hood-count { font-size: 0.85rem; color: var(--charcoal-light); font-weight: 500; }

.hood-grid-full { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-md); }
.hood-card-full {
  display: block; padding: var(--space-md) var(--space-lg);
  background: var(--white); border-radius: var(--border-radius);
  border: 1px solid var(--border); text-decoration: none; color: var(--poppy);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.hood-card-full:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--poppy); }
.hood-desc { font-size: 0.9rem; color: var(--charcoal-light); margin: var(--space-xs) 0; }

/* --- Location Detail --- */
.location-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-xl); margin-top: var(--space-lg); }
.location-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xs); border-radius: var(--border-radius); overflow: hidden; margin-bottom: var(--space-lg); max-height: 400px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { grid-row: span 2; }
.location-meta { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-md); }
.rating-badge { font-weight: 700; color: var(--mustard-dark); font-size: 1.1rem; }
.review-count { color: var(--charcoal-light); font-size: 0.9rem; }
.neighborhood-badge { background: var(--relish-light); color: var(--relish); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.neighborhood-badge:hover { background: var(--relish); color: var(--white); }
.price-badge { font-weight: 700; color: var(--relish); font-size: 1.1rem; }
.location-desc { margin-bottom: var(--space-lg); }
.detail-section { margin-bottom: var(--space-xl); }

/* --- Sidebar --- */
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--border-radius); padding: var(--space-md); margin-bottom: var(--space-sm); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: var(--space-sm); color: var(--poppy); }
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list li { font-size: 0.9rem; line-height: 1.5; }

/* --- Tags --- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; }
.tag-mustard { background: var(--mustard-light); color: var(--mustard-dark); }
.tag-outline { background: transparent; border: 1px solid var(--border); color: var(--charcoal); }

/* --- Hours Table --- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 10px 0; font-size: 0.9rem; }
.day-name { font-weight: 600; width: 120px; text-transform: capitalize; }
.day-hours { color: var(--charcoal); }

/* --- Testimonial --- */
.testimonial { background: var(--mustard-light); border-left: 4px solid var(--mustard); padding: var(--space-md); border-radius: 0 var(--border-radius) var(--border-radius) 0; }
.testimonial p { font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--charcoal); }

/* --- Map --- */
.location-map { height: 300px; border-radius: var(--border-radius); overflow: hidden; }
.neighborhood-map { height: 400px; border-radius: var(--border-radius); overflow: hidden; margin-bottom: var(--space-lg); }
.directory-map { height: 400px; border-radius: var(--border-radius); overflow: hidden; margin-bottom: var(--space-lg); }

/* --- Filter Bar --- */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: flex-end; margin-bottom: var(--space-lg); padding: var(--space-md); background: var(--white); border-radius: var(--border-radius); border: 1px solid var(--border); }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-light); }
.filter-group select, .filter-group input {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--border-radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; background: var(--cream);
  min-width: 180px;
}
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--mustard); }
.filter-count { font-size: 0.9rem; color: var(--charcoal-light); font-weight: 600; margin-left: auto; }

/* --- Breadcrumbs --- */
.breadcrumbs { padding: calc(var(--nav-height) + var(--space-md)) 0 var(--space-md); font-size: 0.85rem; color: var(--charcoal-light); }
.breadcrumbs a { color: var(--charcoal-light); }
.breadcrumbs a:hover { color: var(--vienna-red); }
.breadcrumbs .sep { margin: 0 6px; opacity: 0.5; }

/* --- Guide Page --- */
.toppings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-sm); margin-top: var(--space-md); }
.topping-card { background: var(--white); padding: var(--space-md); border-radius: var(--border-radius); border: 1px solid var(--border); position: relative; }
.topping-number { position: absolute; top: 12px; right: 16px; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--mustard-light); }
.topping-card h3 { font-size: 1.1rem; color: var(--vienna-red); margin-bottom: 6px; }
.topping-card p { font-size: 0.9rem; color: var(--charcoal); }

.etiquette-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-sm); margin-top: var(--space-md); }
.etiquette-card { background: var(--vienna-red-light); padding: var(--space-md); border-radius: var(--border-radius); }
.etiquette-card h3 { color: var(--vienna-red); font-size: 1rem; margin-bottom: 6px; }
.etiquette-card p { font-size: 0.9rem; }

.fun-facts { padding-left: var(--space-md); list-style: disc; }
.fun-facts li { margin-bottom: var(--space-sm); font-size: 1rem; line-height: 1.6; }

/* --- History Timeline --- */
.timeline { margin-top: var(--space-lg); position: relative; padding-left: var(--space-lg); }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 3px; background: var(--vienna-red); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: var(--space-xl); }
.timeline-item::before { content: ''; position: absolute; left: calc(-1 * var(--space-lg) + 10px); top: 6px; width: 14px; height: 14px; background: var(--mustard); border: 3px solid var(--vienna-red); border-radius: 50%; }
.timeline-period { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--mustard-dark); margin-bottom: 4px; }
.timeline-content p { font-size: 1rem; line-height: 1.7; }

/* --- Parking Tip --- */
.parking-tip { background: var(--mustard-light); padding: var(--space-md); border-radius: var(--border-radius); border: 1px solid var(--mustard); }

/* --- Highlights --- */
.highlights-list { padding-left: var(--space-md); list-style: disc; }
.highlights-list li { margin-bottom: var(--space-xs); }

/* --- Footer --- */
.site-footer { background: var(--poppy); color: var(--white); padding: var(--space-xl) 0 var(--space-lg); margin-top: var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; display: block; margin-bottom: var(--space-xs); }
.footer-tagline { color: var(--mustard); font-weight: 600; font-size: 0.95rem; margin-bottom: var(--space-sm); }
.footer-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }
.footer-links h4 { font-family: var(--font-display); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); margin-bottom: var(--space-sm); }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--mustard); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-md); text-align: center; font-size: 0.85rem; color: var(--slate); }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Saved Heart --- */
.loc-heart { cursor: pointer; font-size: 1.2rem; }
.loc-heart.saved { color: var(--vienna-red); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .location-detail-grid { grid-template-columns: 1fr; }
  .location-gallery { grid-template-columns: 1fr 1fr; max-height: 300px; }
  .gallery-main { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: var(--space-sm); gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px var(--space-sm); width: 100%; }

  .hero { padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-lg); }
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; }

  .stats-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .card-grid { grid-template-columns: 1fr; }
  .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .lists-grid { grid-template-columns: 1fr; }
  .toppings-grid { grid-template-columns: 1fr; }
  .etiquette-grid { grid-template-columns: 1fr; }

  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-group select, .filter-group input { min-width: auto; width: 100%; }
  .filter-count { margin-left: 0; }

  .location-gallery { grid-template-columns: 1fr; max-height: 250px; }
  .location-gallery .gallery-item:not(.gallery-main) { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hood-grid-full { grid-template-columns: 1fr; }
}

/* --- Beyond Chicago --- */
.beyond-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--border-radius); padding: var(--space-lg); margin-bottom: var(--space-lg); }
.beyond-card h3 { color: var(--vienna-red); }
.beyond-location { font-size: 0.85rem; font-weight: 600; color: var(--mustard-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-sm); }
.beyond-fact { background: var(--mustard-light); padding: var(--space-sm) var(--space-md); border-radius: var(--border-radius-sm); font-size: 0.9rem; font-style: italic; color: var(--charcoal); }
.outpost-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-md); margin-bottom: var(--space-xl); }
.outpost-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--border-radius); padding: var(--space-md); }
.outpost-card h3 { font-size: 1.05rem; color: var(--vienna-red); margin-bottom: 2px; }
.outpost-card p { font-size: 0.9rem; margin-bottom: var(--space-xs); }
@media (max-width: 640px) { .outpost-grid { grid-template-columns: 1fr; } }

/* --- Recipe Cards --- */
.recipe-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--border-radius); padding: var(--space-lg); margin-bottom: var(--space-lg); }
.recipe-card h2 { color: var(--vienna-red); margin-bottom: var(--space-xs); }
.recipe-card h3 { margin-top: var(--space-lg); }
.recipe-card ul, .recipe-card ol { padding-left: var(--space-md); margin: var(--space-sm) 0; }
.recipe-card li { margin-bottom: 6px; line-height: 1.6; }
.recipe-card ol li { padding-left: 4px; }

/* --- Blog --- */
.post-meta { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-lg); color: var(--charcoal-light); font-size: 0.9rem; flex-wrap: wrap; }
.post-meta time { font-weight: 600; }
.post-tags { display: flex; gap: 6px; }
.post-content { margin-bottom: var(--space-xl); }
.post-content h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); font-size: 1.5rem; color: var(--vienna-red); }
.post-content h3 { margin-top: var(--space-lg); margin-bottom: var(--space-xs); font-size: 1.2rem; }
.post-content p { margin-bottom: var(--space-md); line-height: 1.8; }
.post-content ul, .post-content ol { margin-bottom: var(--space-md); padding-left: var(--space-md); }
.post-content li { margin-bottom: var(--space-xs); line-height: 1.7; }
.post-content blockquote { background: var(--mustard-light); border-left: 4px solid var(--mustard); padding: var(--space-md); border-radius: 0 var(--border-radius) var(--border-radius) 0; margin: var(--space-lg) 0; font-style: italic; }
.post-content a { color: var(--vienna-red); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--vienna-red-dark); }
.post-content .location-callout { background: var(--white); border: 1px solid var(--border); border-radius: var(--border-radius); padding: var(--space-md); margin: var(--space-md) 0; }
.post-content .location-callout h4 { font-size: 1rem; margin-bottom: 4px; }
.post-content .location-callout p { margin-bottom: 4px; font-size: 0.9rem; }
.post-footer { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-md); }
.blog-card { background: var(--white); border-radius: var(--border-radius); padding: var(--space-lg); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: var(--space-xs); color: var(--poppy); }
.blog-card .blog-date { font-size: 0.8rem; color: var(--charcoal-light); margin-bottom: var(--space-sm); }
.blog-card p { font-size: 0.9rem; color: var(--charcoal); line-height: 1.6; flex: 1; }
.blog-card .blog-read { font-size: 0.85rem; font-weight: 600; color: var(--vienna-red); margin-top: var(--space-sm); }
.cross-promo { background: var(--vienna-red-light); border: 1px solid var(--vienna-red); border-radius: var(--border-radius); padding: var(--space-md); margin: var(--space-lg) 0; }
.cross-promo h3 { color: var(--vienna-red); font-size: 1rem; margin-bottom: var(--space-xs); }
.cross-promo p { font-size: 0.9rem; margin-bottom: var(--space-xs); }
.cross-promo a { font-weight: 600; }

/* --- Print --- */
@media print {
  .site-nav, .site-footer, .btn, .filter-bar, .location-map, .neighborhood-map, .directory-map { display: none; }
  .hero { background: none; color: var(--poppy); padding: var(--space-md) 0; }
}
