:root { --accent: #d2691e; --text: #2a2420; --bg: #fffaf5; }
* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; margin: 0; color: var(--text); background: var(--bg); line-height: 1.5; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid #eee; }
.logo { font-weight: 700; font-size: 1.25rem; color: var(--accent); text-decoration: none; }
.nav-links a { margin-left: 1.25rem; color: var(--text); text-decoration: none; }
main { max-width: 960px; margin: 0 auto; padding: 1.5rem; }
.hero h1 { font-size: 1.9rem; }
.card-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.listing-card { border: 1px solid #eee; border-radius: 8px; padding: 1rem; background: #fff; }
.listing-card-image-placeholder, .listing-image-placeholder { background: #f0e5d8; border-radius: 6px; aspect-ratio: 16/9; margin-bottom: .5rem; }
.tag-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.tag-chip { background: #fdeee0; color: #a0522d; font-size: .78rem; padding: .2rem .55rem; border-radius: 999px; }
.ad-zone { min-height: 90px; background: repeating-linear-gradient(45deg,#f5f5f5,#f5f5f5 10px,#eee 10px,#eee 20px); border-radius: 6px; margin: 1.25rem 0; }
.site-footer { margin-top: 3rem; padding: 1.5rem; border-top: 1px solid #eee; font-size: .85rem; color: #766; }
.footer-links a { margin-right: 1rem; }
.submit-form { display: flex; flex-direction: column; gap: 1rem; max-width: 480px; }
.submit-form label { display: flex; flex-direction: column; gap: .3rem; font-size: .9rem; }
.submit-form input, .submit-form select, .submit-form textarea { padding: .5rem; border: 1px solid #ccc; border-radius: 4px; font: inherit; }
.state-list { list-style: none; padding: 0; }
.state-list li { padding: .4rem 0; border-bottom: 1px solid #eee; }
.breadcrumb { font-size: .85rem; color: #888; margin-bottom: 1rem; }
