
:root {
  --cream:      #F7F3EE;
  --paper:      #FFFDF9;
  --warm-gray:  #E8E2D9;
  --mid-gray:   #A09488;
  --dark:       #1C1712;
  --charcoal:   #2E2820;
  --rust:       #C04D2A;
  --rust-light: #E8693E;
  --gold:       #D4A940;
  --teal:       #2D6B6B;
  --teal-light: #3E8E8E;
  --text:       #2E2820;
  --text-muted: #7A6F65;
  --border:     #DDD5C8;
  --shadow:     0 2px 12px rgba(28,23,18,.08);
  --shadow-md:  0 6px 28px rgba(28,23,18,.13);
  --radius:     10px;
  --radius-sm:  6px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', monospace;
  --max-w:      1200px;
  --nav-h:      66px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text); line-height: 1.65; min-height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--sm { padding: 40px 0; }
.section--alt { background: var(--paper); }
.section--dark { background: var(--dark); color: #fff; }

h1,h2,h3,h4,h5 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem,3vw,2.1rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); }
p { margin-bottom: .9em; }
p:last-child { margin-bottom: 0; }
.eyebrow { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rust); display: block; margin-bottom: 8px; }
.text-muted { color: var(--text-muted); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 500; transition: all .2s; white-space: nowrap; }
.btn--primary { background: var(--rust); color: #fff; }
.btn--primary:hover { background: var(--rust-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,77,42,.3); }
.btn--outline { border: 1.5px solid var(--rust); color: var(--rust); }
.btn--outline:hover { background: var(--rust); color: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-light); }
.btn--ghost { color: var(--text-muted); }
.btn--ghost:hover { color: var(--rust); }
.btn--sm { padding: 7px 16px; font-size: .83rem; }
.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* Focus styles for accessibility */
.btn:focus-visible, .lc-fav:focus-visible, .fc:focus-visible, .pg:focus-visible, .nav-toggle:focus-visible, .cat-card:focus-visible, .listing-card:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
.search-bar input:focus-visible, .search-bar select:focus-visible { outline: 2px solid var(--rust); outline-offset: -2px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--border); height: var(--nav-h); display: flex; align-items: center; transition: box-shadow .2s; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; gap: 24px; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.navbar__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; background: var(--rust); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 900; font-size: 1.05rem; color: #fff; }
.logo-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--dark); }
.logo-text span { color: var(--rust); }
.navbar__search { flex: 1; max-width: 400px; position: relative; }
.navbar__search input { width: 100%; padding: 9px 16px 9px 38px; border: 1.5px solid var(--border); border-radius: 20px; background: var(--cream); font-size: .88rem; outline: none; transition: border-color .2s; }
.navbar__search input:focus { border-color: var(--rust); }
.navbar__search .si { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--mid-gray); pointer-events: none; font-size: .9rem; }
.navbar__nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.navbar__nav a { padding: 6px 11px; border-radius: var(--radius-sm); font-size: .86rem; font-weight: 500; color: var(--text-muted); transition: color .2s, background .2s; }
.navbar__nav a:hover, .navbar__nav a.active { color: var(--rust); background: rgba(192,77,42,.07); }
.navbar__nav a.nav-post { background: var(--rust); color: #fff; padding: 7px 15px; margin-left: 8px; border-radius: var(--radius-sm); }
.navbar__nav a.nav-post:hover { background: var(--rust-light); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* HERO */
.hero { background: linear-gradient(135deg, #1C1712 0%, #3A2A1A 100%); position: relative; overflow: hidden; padding: 72px 0 80px; color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.hero__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 5px 14px; font-size: .75rem; font-family: var(--font-mono); letter-spacing: .08em; color: var(--gold); margin-bottom: 18px; }
.hero__title { font-size: clamp(1.9rem,4.5vw,3.1rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__sub { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 26px; max-width: 420px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; }
.hero__stat strong { display: block; font-size: 1.45rem; font-family: var(--font-serif); color: var(--gold); }
.hero__stat span { font-size: .78rem; color: rgba(255,255,255,.5); }
.hero__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hcard { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 14px; transition: transform .2s; }
.hcard:hover { transform: translateY(-3px); }
.hcard__img { height: 78px; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); margin-bottom: 10px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.hcard__title { font-size: .8rem; font-weight: 600; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hcard__price { font-size: .78rem; color: var(--gold); font-weight: 600; }
.hcard.span2 { grid-column: span 2; }
.hcard.span2 .hcard__img { height: 48px; font-size: 1.4rem; }

/* SEARCH BAR */
.search-bar { display: flex; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 14px; }
.search-bar input { flex: 1; padding: 14px 18px; border: none; outline: none; font-size: .98rem; background: transparent; color: var(--text); }
.search-bar select { padding: 14px 14px; border: none; border-left: 1px solid var(--border); outline: none; font-size: .88rem; background: var(--cream); color: var(--text-muted); cursor: pointer; }
.search-bar button { background: var(--rust); color: #fff; padding: 14px 22px; font-size: .92rem; font-weight: 600; transition: background .2s; flex-shrink: 0; border: none; cursor: pointer; }
.search-bar button:hover { background: var(--rust-light); }
.search-hints { display: flex; gap: 8px; flex-wrap: wrap; }
.hint { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 4px 12px; font-size: .76rem; color: rgba(255,255,255,.65); cursor: pointer; transition: background .2s; }
.hint:hover { background: rgba(255,255,255,.2); color: #fff; }

/* CATEGORIES */
.cats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 12px; background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius); text-align: center; transition: all .2s; cursor: pointer; text-decoration: none; }
.cat-card:hover { border-color: var(--rust); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card__icon { font-size: 1.8rem; width: 50px; height: 50px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cat-card:hover .cat-card__icon { background: rgba(192,77,42,.1); }
.cat-card__name { font-size: .84rem; font-weight: 600; color: var(--text); }
.cat-card__count { font-size: .73rem; color: var(--text-muted); font-family: var(--font-mono); }

/* AD CONTAINERS */
.ad-slot { background: var(--warm-gray); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--mid-gray); font-size: .75rem; font-family: var(--font-mono); letter-spacing: .05em; }
.ad-slot--banner { min-height: 90px; }
.ad-slot--rect { min-height: 250px; }
.ad-slot--tall { min-height: 600px; }
.ad-wrap { margin: 28px 0; }

/* LISTING CARDS */
.listings-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.listing-card { background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .22s; display: flex; flex-direction: column; }
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.listing-card__img { position: relative; aspect-ratio: 4/3; background: var(--warm-gray); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--mid-gray); }
.listing-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.listing-card:hover .listing-card__img img { transform: scale(1.04); }
.lc-badge { position: absolute; top: 9px; left: 9px; background: var(--rust); color: #fff; font-size: .68rem; font-weight: 600; padding: 3px 8px; border-radius: 20px; font-family: var(--font-mono); }
.lc-badge--new { background: var(--teal); }
.lc-badge--top { background: var(--gold); color: var(--dark); }
.lc-fav { position: absolute; top: 9px; right: 9px; width: 28px; height: 28px; background: rgba(255,255,255,.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; cursor: pointer; transition: background .2s; border: none; }
.lc-fav:hover { background: #fff; }
.listing-card__body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.lc-price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--rust); }
.lc-price .neg { font-size: .73rem; font-weight: 400; font-family: var(--font-sans); color: var(--text-muted); }
.lc-title { font-size: .88rem; font-weight: 600; line-height: 1.35; color: var(--text); }
.lc-meta { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 6px; }
.lc-meta-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }

/* FILTERS BAR */
.filters-bar { background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.fg { display: flex; align-items: center; gap: 8px; }
.fg label { font-size: .8rem; color: var(--text-muted); white-space: nowrap; }
.fselect { padding: 6px 11px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--cream); font-size: .83rem; color: var(--text); outline: none; cursor: pointer; transition: border-color .2s; }
.fselect:focus { border-color: var(--rust); }
.fc { padding: 5px 12px; border: 1.5px solid var(--border); border-radius: 20px; font-size: .78rem; color: var(--text-muted); cursor: pointer; transition: all .15s; background: none; }
.fc:hover, .fc.active { background: var(--rust); border-color: var(--rust); color: #fff; }
.filters-count { margin-left: auto; font-size: .8rem; color: var(--text-muted); font-family: var(--font-mono); }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-muted); padding: 14px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--rust); }
.bc-sep { color: var(--border); }
.bc-cur { color: var(--text); }

/* SECTION HEADER */
.sh { margin-bottom: 34px; }
.sh h2 { margin-bottom: 8px; }
.sh p { color: var(--text-muted); max-width: 520px; }
.sh--between { display: flex; align-items: flex-end; justify-content: space-between; }

/* PAGINATION */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.pg { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .84rem; color: var(--text-muted); cursor: pointer; transition: all .15s; background: none; }
.pg:hover { border-color: var(--rust); color: var(--rust); }
.pg.active { background: var(--rust); border-color: var(--rust); color: #fff; }
.pg.disabled { opacity: .4; cursor: default; }

/* FORM */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .84rem; font-weight: 500; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--paper); font-size: .92rem; color: var(--text); outline: none; transition: border-color .2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--rust); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .76rem; color: var(--text-muted); margin-top: 5px; }

/* LISTING DETAIL */
.listing-detail { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.gallery { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.gallery__main { aspect-ratio: 4/3; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: 6rem; position: relative; overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 8px; padding: 10px; background: var(--cream); }
.gallery__thumb { flex: 1; aspect-ratio: 1; background: var(--warm-gray); border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: border-color .15s; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; overflow: hidden; }
.gallery__thumb.active, .gallery__thumb:hover { border-color: var(--rust); }
.listing-params { background: var(--cream); border-radius: var(--radius-sm); padding: 16px; margin: 18px 0; }
.listing-params table { width: 100%; border-collapse: collapse; }
.listing-params td { padding: 7px 0; font-size: .87rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.listing-params td:first-child { color: var(--text-muted); width: 44%; }
.listing-params td:last-child { font-weight: 500; }
.listing-params tr:last-child td { border-bottom: none; }
.contact-card { background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; position: sticky; top: 80px; }
.cc-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--rust); margin-bottom: 4px; }
.cc-note { font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; }
.cc-seller { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 14px 0; }
.seller-av { width: 42px; height: 42px; background: var(--rust); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.seller-name { font-weight: 600; font-size: .88rem; }
.seller-meta { font-size: .76rem; color: var(--text-muted); }
.seller-stars { color: var(--gold); font-size: .8rem; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(28,23,18,.58); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--paper); border-radius: var(--radius); padding: 26px; width: 100%; max-width: 460px; transform: translateY(12px); transition: transform .25s; max-height: 90vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal__hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.modal__close { font-size: 1.3rem; color: var(--text-muted); cursor: pointer; background: none; border: none; }
.modal__close:hover { color: var(--rust); }

/* TOAST */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--teal); color: #fff; padding: 11px 18px; border-radius: var(--radius-sm); font-size: .87rem; font-weight: 500; box-shadow: var(--shadow-md); z-index: 300; transform: translateY(8px); opacity: 0; transition: all .3s; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* CATEGORY SIDEBAR */
.category-layout { display: grid; grid-template-columns: 230px 1fr; gap: 26px; align-items: start; }
.sidebar-f { background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; position: sticky; top: 80px; }
.sidebar-f h4 { margin-bottom: 14px; font-size: .9rem; }
.fs { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.fs:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.fs h5 { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 10px; }
.fopt { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; font-size: .86rem; color: var(--text-muted); transition: color .15s; }
.fopt input { cursor: pointer; accent-color: var(--rust); }
.fopt:hover { color: var(--text); }
.price-rng { display: flex; gap: 7px; align-items: center; }
.price-rng input { flex: 1; padding: 7px 10px; font-size: .82rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--cream); outline: none; }
.price-rng input:focus { border-color: var(--rust); }
.price-rng span { color: var(--text-muted); font-size: .78rem; }

/* ABOUT / INFO */
.page-hero { background: linear-gradient(120deg, #1C1712 0%, #3A2A1A 60%, #C04D2A 100%); color: #fff; padding: 64px 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 520px; margin: 14px auto 0; }
.info-block h2 { margin-bottom: 12px; }
.info-block h3 { margin: 24px 0 9px; }
.info-block p, .info-block li { font-size: .94rem; color: var(--charcoal); line-height: 1.75; }
.info-block ul { padding-left: 22px; list-style: disc; }
.info-block ul li { margin-bottom: 6px; }

/* BACK TO TOP */
#btt { position: fixed; bottom: 28px; right: 24px; z-index: 90; background: var(--rust); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; transform: translateY(10px); border: none; }
#btt.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#btt:hover { background: var(--rust-light); }

/* COOKIE CONSENT */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--dark); color: rgba(255,255,255,.85); padding: 18px 20px; transform: translateY(100%); transition: transform .4s ease; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: .88rem; box-shadow: 0 -4px 20px rgba(0,0,0,.25); }
.cookie-consent.cc-show { transform: translateY(0); }
.cookie-consent.cc-hide { transform: translateY(100%); }
.cookie-consent p { margin: 0; max-width: 620px; line-height: 1.5; }
.cookie-consent a { color: var(--gold); text-decoration: underline; }
.cookie-consent a:hover { color: #fff; }
.cc-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cc-btn { padding: 9px 20px; border-radius: var(--radius-sm); font-size: .84rem; font-weight: 600; cursor: pointer; border: none; transition: all .2s; }
.cc-btn--accept { background: var(--rust); color: #fff; }
.cc-btn--accept:hover { background: var(--rust-light); }
.cc-btn--reject { background: transparent; color: rgba(255,255,255,.6); border: 1.5px solid rgba(255,255,255,.2); }
.cc-btn--reject:hover { border-color: rgba(255,255,255,.5); color: #fff; }
@media (max-width: 600px) {
  .cookie-consent { flex-direction: column; text-align: center; gap: 14px; padding: 16px; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 52px 0 0; margin-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand p { font-size: .86rem; line-height: 1.65; margin-top: 14px; max-width: 270px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo .logo-text { color: #fff; }
.footer h5 { font-family: var(--font-sans); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px; }
.footer__bottom a { color: rgba(255,255,255,.38); }
.footer__bottom a:hover { color: var(--gold); }

/* CHIP */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 5px 12px; border-radius: 20px; font-size: .78rem; font-weight: 500; background: var(--cream); border: 1px solid var(--border); color: var(--text-muted); }

/* MOBILE SEARCH */
.mobile-search { display: none; padding: 8px 20px 12px; background: var(--paper); border-bottom: 1px solid var(--border); }
.mobile-search input { width: 100%; padding: 10px 16px; border: 1.5px solid var(--border); border-radius: 20px; background: var(--cream); font-size: .88rem; outline: none; font-family: var(--font-sans); }
.mobile-search input:focus { border-color: var(--rust); }

/* HOW IT WORKS GRID */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(4,1fr); }
  .listings-grid { grid-template-columns: repeat(3,1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .listing-detail { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .category-layout { grid-template-columns: 1fr; }
  .sidebar-f { position: static; }
}
@media (max-width: 768px) {
  .mobile-search { display: block; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .cats-grid { grid-template-columns: repeat(3,1fr); }
  .listings-grid { grid-template-columns: repeat(2,1fr); }
  .navbar__search { display: none; }
  .navbar__nav { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 6px; z-index: 99; }
  .navbar__nav.open { display: flex; }
  .navbar { position: relative; }
  .nav-toggle { display: flex; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 44px 0; }
  .filters-bar { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 22px; }
  .sh--between { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .listings-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
}
