:root {
    --city-bg: #f8f5ef;
    --city-surface: #ffffff;
    --city-text: #2b241f;
    --city-muted: #746a62;
    --city-primary: #7b4f32;
    --city-primary-dark: #5d3824;
    --city-border: #e8dfd5;
    --city-radius: 18px;
    --city-shadow: 0 12px 34px rgba(63, 43, 29, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--city-text); background: var(--city-bg); font-family: Tahoma, Arial, sans-serif; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.city-shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: fixed; inset-block-start: 8px; inset-inline-start: 8px; z-index: 1000; transform: translateY(-160%); padding: 10px 16px; border-radius: 10px; background: #fff; color: #000; }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--city-border); backdrop-filter: blur(14px); }
.site-header__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { font-size: 1.55rem; font-weight: 900; color: var(--city-primary); }
.site-nav { display: flex; align-items: center; gap: 18px; font-weight: 700; }
.site-nav__primary { padding: 9px 16px; color: #fff; background: var(--city-primary); border-radius: 999px; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; padding-block: 18px; color: var(--city-muted); font-size: .92rem; overflow-x: auto; white-space: nowrap; }
.breadcrumbs a:hover { color: var(--city-primary); }
.city-hero { padding: 24px 0 44px; }
.city-hero__inner { padding: clamp(28px, 5vw, 56px); border: 1px solid var(--city-border); border-radius: 28px; background: linear-gradient(135deg, #fff 0%, #f2e8dc 100%); box-shadow: var(--city-shadow); }
.city-eyebrow { margin: 0 0 10px; color: var(--city-primary); font-weight: 800; }
.city-hero h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.15; }
.city-hero p { max-width: 780px; margin: 18px 0 0; color: var(--city-muted); font-size: 1.08rem; }
.city-hero__stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.city-hero__stats span { padding: 9px 14px; border: 1px solid rgba(123,79,50,.18); border-radius: 999px; background: rgba(255,255,255,.78); }
.city-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 28px; align-items: start; padding-bottom: 56px; }
.city-sidebar { position: sticky; top: 92px; display: grid; gap: 18px; }
.city-widget { padding: 20px; border: 1px solid var(--city-border); border-radius: var(--city-radius); background: var(--city-surface); box-shadow: 0 8px 24px rgba(63,43,29,.05); }
.city-widget h2 { margin: 0 0 14px; font-size: 1.05rem; }
.city-widget > a, .cuisine-links a { display: block; padding: 10px 0; border-bottom: 1px solid #f0e9e1; color: var(--city-muted); }
.city-widget > a:last-child, .cuisine-links a:last-child { border-bottom: 0; }
.city-widget a:hover { color: var(--city-primary); }
.section-heading { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 18px; }
.section-heading h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.section-heading p { margin: 6px 0 0; color: var(--city-muted); }
.section-heading > span { flex: 0 0 auto; padding: 8px 13px; border-radius: 999px; background: #efe4d8; color: var(--city-primary-dark); font-weight: 800; }
.restaurant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.restaurant-card { min-width: 0; overflow: hidden; border: 1px solid var(--city-border); border-radius: var(--city-radius); background: var(--city-surface); box-shadow: 0 9px 28px rgba(63,43,29,.06); transition: transform .18s ease, box-shadow .18s ease; }
.restaurant-card:hover { transform: translateY(-3px); box-shadow: var(--city-shadow); }
.restaurant-card__image { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #eee5dc; }
.restaurant-card__image img { width: 100%; height: 100%; object-fit: cover; }
.restaurant-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem; }
.restaurant-card__body { padding: 16px; }
.restaurant-card__top { min-height: 28px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.restaurant-card__rating { color: #865c1c; font-weight: 900; }
.restaurant-card__rating small { color: var(--city-muted); font-weight: 600; }
.restaurant-card__rating--empty { color: var(--city-muted); font-size: .84rem; }
.restaurant-card h3 { margin: 10px 0 5px; font-size: 1.13rem; line-height: 1.4; }
.restaurant-card h3 a:hover { color: var(--city-primary); }
.restaurant-card__cuisine { margin: 0; color: var(--city-primary); font-weight: 700; }
.restaurant-card__address { min-height: 50px; margin: 8px 0 0; color: var(--city-muted); font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.restaurant-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid #f0e9e1; font-size: .88rem; }
.restaurant-card__footer span { color: var(--city-muted); }
.restaurant-card__footer a { color: var(--city-primary); font-weight: 900; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; padding-inline: 12px; border: 1px solid var(--city-border); border-radius: 12px; background: #fff; }
.pagination span[aria-current="page"] { color: #fff; border-color: var(--city-primary); background: var(--city-primary); }
.site-footer { padding: 34px 0; color: #f4ece5; background: #2f241d; }
.site-footer__inner { display: flex; justify-content: space-between; align-items: start; gap: 28px; }
.site-footer strong { font-size: 1.35rem; }
.site-footer p { margin: 6px 0 0; color: #cbbdb2; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
a:focus-visible, button:focus-visible { outline: 3px solid #c58a57; outline-offset: 3px; }
@media (max-width: 1050px) {
    .city-layout { grid-template-columns: 1fr; }
    .city-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .restaurant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .city-shell { width: min(100% - 20px, 100%); }
    .site-header__inner { min-height: 64px; }
    .site-nav a:not(.site-nav__primary) { display: none; }
    .city-hero { padding-top: 10px; }
    .city-hero__inner { padding: 25px 20px; border-radius: 20px; }
    .city-sidebar { grid-template-columns: 1fr; }
    .restaurant-grid { grid-template-columns: 1fr; }
    .section-heading { align-items: start; flex-direction: column; }
    .site-footer__inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
