:root {
    --night: #12151A;
    --sodium: #E8A54B;
    --paper: #F4F0E8;
    --ink: #ECE7DC;
    --club-pink: #D45B7A;
    --rule: #2A3038;
    --muted: #9BA3AD;
}
* { box-sizing: border-box; }
html { background: var(--night); color: var(--ink); }
body { margin: 0; background: var(--night); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sodium); }
.site-header { border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 10; background: rgba(18,21,26,.96); backdrop-filter: none; }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 16px 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.brand { font-weight: 800; letter-spacing: -.04em; font-size: 1.35rem; }
.brand span { color: var(--sodium); }
.nav { display: flex; gap: 20px; color: #B8BEC6; font-size: .88rem; }
.nav a:hover { color: var(--ink); }
.header-search { display: flex; align-items: center; gap: 8px; border: 1px solid var(--rule); padding: 8px 12px; min-width: 235px; }
.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; }
.form-status { grid-column: 1 / -1; margin:0; color:#8D959E; font-size:.75rem; }
.header-search input { background: transparent; border: 0; outline: 0; color: var(--ink); width: 100%; }
.header-search input::placeholder { color: #7F8790; }
.page-shell { max-width: 1240px; margin: 0 auto; padding: 42px 28px 80px; }
.search-bar { display: grid; grid-template-columns: 1.4fr .8fr auto; gap: 10px; padding: 14px; background: #191E25; border: 1px solid var(--rule); margin-bottom: 30px; }
.search-bar input, .search-bar select { border: 1px solid var(--rule); background: var(--night); color: var(--ink); padding: 13px; min-width: 0; }
.search-bar select { padding-inline-end: 34px; }
.button { border: 0; background: var(--sodium); color: var(--night); font-weight: 800; padding: 13px 18px; cursor: pointer; }
.kicker { color: var(--sodium); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.section-title { display:flex; justify-content:space-between; align-items:baseline; gap:20px; margin: 42px 0 16px; }
.section-title h1, .section-title h2 { margin: 0; letter-spacing: -.04em; }
.section-title h1 { font-size: clamp(2rem, 4vw, 4rem); }
.section-title h2 { font-size: 1.6rem; }
.mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 230px; gap: 12px; }
.mosaic-card { position: relative; overflow: hidden; border: 1px solid var(--rule); background: #1A2027; min-height: 220px; }
.mosaic-card.feature { grid-row: span 2; }
.mosaic-card img { width:100%; height:100%; object-fit:cover; opacity:.68; display:block; }
.mosaic-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 28%, rgba(18,21,26,.92) 100%); }
.mosaic-copy { position:absolute; z-index:1; left:18px; right:18px; bottom:16px; }
.mosaic-copy h3 { margin: 6px 0; font-size: clamp(1.15rem, 2vw, 2rem); letter-spacing: -.03em; }
.mosaic-copy p { margin: 0; color: #C4C8CD; font-size: .9rem; }
.list-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.list-card { border-top: 2px solid var(--sodium); padding: 16px 0 22px; }
.list-card h3 { margin: 5px 0 7px; font-size: 1.2rem; }
.list-card p { color: #AEB5BD; margin: 0; line-height: 1.5; }
.meta { color: var(--club-pink); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.neighborhood-strip { display:flex; flex-wrap:wrap; gap: 18px; padding: 18px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.neighborhood-strip a { color: var(--sodium); font-weight: 700; }
.site-footer { border-top: 1px solid var(--rule); color: #8D959E; padding: 28px; font-size: .85rem; }
.footer-inner { max-width: 1240px; margin:0 auto; display:flex; justify-content:space-between; gap:20px; }
.detail-grid { display:grid; grid-template-columns: 1.4fr .8fr; gap: 30px; }
.detail-cover { width:100%; max-height:520px; object-fit:cover; border:1px solid var(--rule); }
.prose { color:#C5CAD0; line-height:1.8; font-size:1.05rem; }
@media (max-width: 820px) { .header-inner { grid-template-columns: 1fr auto; } .nav { grid-column: 1 / -1; grid-row: 2; overflow:auto; } .header-search { min-width: 0; } .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; } .mosaic-card.feature { grid-column: span 2; grid-row: span 1; } .list-grid, .detail-grid { grid-template-columns:1fr; } .search-bar { grid-template-columns:1fr; } .page-shell { padding: 28px 18px 60px; } }
@media (max-width: 520px) { .header-inner { padding: 14px 18px; } .mosaic { grid-template-columns:1fr; } .mosaic-card.feature { grid-column: auto; } .footer-inner { display:block; } }