:root {
  --bg: #faf9f7;
  --panel: #ffffff;
  --panel-soft: #fefefe;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --muted: #9a9a9a;
  --accent: #d4a574;
  --accent-light: #e8c5a0;
  --accent-rose: #e8b4b8;
  --border: rgba(212, 165, 116, 0.15);
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(212, 165, 116, 0.2);
  --radius: 16px;
  --radius-sm: 12px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

a { 
  color: inherit; 
  text-decoration: none; 
  transition: all 0.3s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(212, 165, 116, 0.6);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(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;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  color: var(--accent);
  font-style: italic;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav { 
  display: flex; 
  align-items: center;
  gap: 8px; 
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  box-shadow: 0 8px 22px rgba(212, 165, 116, 0.26);
  border: 1px solid rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(212, 165, 116, 0.34);
}

.header-cta.active {
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.22), 0 10px 26px rgba(212, 165, 116, 0.34);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.7);
}

.header-search:focus-within {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.12);
}

.header-search input {
  border: none;
  background: transparent;
  outline: none;
  width: 220px;
  font-size: 0.9rem;
  color: var(--text);
}

.header-search input::placeholder {
  color: var(--text-light);
}

.header-search button {
  border: none;
  background: rgba(212, 165, 116, 0.14);
  color: var(--accent);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.header-search button:hover {
  background: rgba(212, 165, 116, 0.2);
}

.nav a {
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a.active, .nav a:hover {
  color: var(--accent);
  background: rgba(212, 165, 116, 0.1);
}

/* Hero */
.hero {
  padding: 44px 0 24px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.25;
}

.hero-subtitle {
  color: var(--text-light);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Category Section */
.category-section {
  margin: 42px 0 72px;
}

.content-section {
  margin: 42px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-list {
  list-style: decimal;
  padding-left: 1.4rem;
  display: grid;
  gap: 10px;
  color: var(--text-light);
}

.content-list li {
  line-height: 1.55;
}

.content-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212, 165, 116, 0.55);
  text-underline-offset: 3px;
}

.article-content {
  max-width: 78ch;
  margin: 10px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.7);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.article-content p {
  margin: 12px 0;
  color: var(--text-light);
}

.article-content ul,
.article-content ol {
  padding-left: 1.4rem;
  margin: 12px 0;
  color: var(--text-light);
  display: grid;
  gap: 8px;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(212, 165, 116, 0.55);
  text-underline-offset: 3px;
}

.article-content code {
  background: rgba(212, 165, 116, 0.12);
  border: 1px solid rgba(212, 165, 116, 0.18);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 0.95em;
}

.article-content pre {
  margin: 12px 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.04);
  overflow: auto;
}

.article-content pre code {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 0.95em;
}

.cta-panel {
  margin: 42px 0;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 165, 116, 0.25);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(232, 180, 184, 0.08));
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-panel h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 0;
}

.content-note {
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-light);
}

.inline-links {
  margin-top: 12px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 26px 0 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--muted);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.city-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.city-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.city-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.hero-actions {
  justify-content: center;
  margin-top: 18px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--text);
}

.view-all {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: rgba(212, 165, 116, 0.1);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  padding: 20px 0;
}

.filter-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: #f5f5f5;
  color: #2d2d2d;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  background: #e8e8e8;
}

.filter-btn.primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.filter-btn.primary:hover {
  background: #c8945e;
}

.filter-btn.active {
  background: #f0f9f4;
  color: #166534;
  border: none;
}

.filter-btn.active::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0.7;
}

/* Grid */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  padding-bottom: 40px;
}

/* Card - Minimalist */
.card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}

.card-sponsored {
  border-color: rgba(212, 165, 116, 0.35);
  box-shadow: 0 4px 28px rgba(212, 165, 116, 0.14);
}

.sponsored-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.14);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #f5f3f0, #e8e5e0);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.2px;
  line-height: 1.4;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.rating-count {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
}

.rating-star {
  color: #fbbf24;
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.info-item svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.6;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.card-tag-highlight {
  background: #f0f9f4;
  color: #166534;
  border: none;
}

.card-tag-more {
  background: #ffffff;
  color: #6b6b6b;
  border: 1px solid #e5e5e5;
}

.address {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hours-summary {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* Listing Meta */
.listing-meta {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0 12px;
}

.search-form input {
  flex: 1 1 320px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--panel);
  font-size: 1rem;
}

.search-form .filter-btn {
  flex: 0 0 auto;
}

.lead-form {
  margin-top: 12px;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  color: var(--text);
}

.form-field textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.form-actions .muted {
  margin: 0;
}

.search-tips {
  margin-bottom: 20px;
}

.search-tips a {
  text-decoration: underline;
  text-decoration-color: rgba(212, 165, 116, 0.55);
  text-underline-offset: 3px;
}

/* Detail Page */
.detail-header {
  margin-bottom: 40px;
}

.detail-header h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.detail-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.detail-gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f5f3f0, #e8e5e0);
}

.detail-photo-attrib {
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.detail-section {
  margin-bottom: 40px;
}

.detail-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.detail-info {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
}

.detail-info-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.detail-info-item:last-child {
  border-bottom: none;
}

.detail-info-label {
  font-weight: 600;
  color: var(--text);
  min-width: 100px;
  font-size: 0.95rem;
}

.detail-info-value {
  color: var(--text-light);
  flex: 1;
  font-size: 0.95rem;
}

.reviews-section {
  margin-top: 40px;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 16px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.review-rating {
  color: #fbbf24;
  font-weight: 600;
}

.review-text {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.page-head {
  padding: 30px 0 20px;
}

.page-head h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.muted { 
  color: var(--text-light); 
  font-size: 0.95rem;
}

.empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
  background: var(--panel);
  border: 1px dashed var(--border-soft);
  border-radius: var(--radius);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
  color: var(--text-light);
  text-align: center;
  margin-top: 80px;
  font-size: 0.9rem;
}

.site-footer small a {
  color: var(--accent);
  font-weight: 500;
}

.footer-sep {
  margin: 0 8px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--accent);
  font-weight: 500;
}

/* Back Button */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.back-link:hover {
  color: var(--accent-light);
}

/* Prose pages */
.prose {
  max-width: 920px;
}

.prose ul {
  margin: 10px 0 0 22px;
  color: var(--text-light);
}

.prose li {
  margin: 8px 0;
}

/* FAQ */
.faq-section {
  margin: 46px 0;
}

.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq-answer {
  margin-top: 10px;
  color: var(--text-light);
}

/* Mobile action bar (listing pages) */
.action-bar {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header .container {
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: flex-start;
  }

  .header-right {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "search cta"
      "nav nav";
    gap: 10px 12px;
    align-items: center;
  }

  .header-search {
    grid-area: search;
    width: 100%;
  }

  .header-search input {
    width: 100%;
    min-width: 0;
  }

  .nav {
    grid-area: nav;
    flex-wrap: wrap;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  body[data-page="listing"] {
    padding-bottom: 84px;
  }

  .action-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-soft);
    padding: 10px 0;
  }

  .action-bar-inner {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .action-bar-inner .filter-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
  }

  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 28px 0 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 14px;
  }
  
  .category-section {
    margin: 26px 0 48px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
  
  .filter-btn.active::before {
    width: 14px;
    height: 14px;
  }

  .detail-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .detail-info-label {
    min-width: 0;
  }

  .review-header {
    flex-wrap: wrap;
    gap: 6px;
  }
}

@media (max-width: 540px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header .container { 
    height: auto; 
    padding: 10px 16px; 
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .brand {
    flex: 0 0 auto;
    font-size: 1.05rem;
    justify-content: flex-start;
    order: 1;
  }

  .header-right {
    width: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .header-search {
    width: 100%;
    order: 1;
    padding: 8px 12px;
  }

  .header-search input {
    width: 100%;
    font-size: 0.9rem;
  }

  .header-search button {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .nav {
    width: 100%;
    order: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
    padding: 2px 0;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  /* Make navigation more compact on mobile */
  .nav a:nth-child(n+4) {
    font-size: 0.75rem;
    padding: 6px 8px;
  }

  .header-cta {
    width: 100%;
    order: 3;
    padding: 10px 16px;
    font-size: 0.9rem;
    justify-content: center;
    margin-top: 2px;
  }

  .search-form .filter-btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    text-align: left;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.92rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .category-section {
    margin: 22px 0 42px;
  }

  .section-header {
    margin-bottom: 14px;
  }

  .city-grid {
    gap: 14px;
  }

  .city-card {
    padding: 18px;
  }
  
  .hero h1 {
    font-size: 1.55rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .card-body {
    padding: 16px;
  }
  
  .card-tag {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}
