@charset "UTF-8";
:root {
  --ink: #162820;
  --ink-soft: #35463f;
  --muted: #68756f;
  --paper: #f4f1e9;
  --paper-warm: #eee8dc;
  --white: #fffefa;
  --line: #dfe3dc;
  --brand: #ed5a36;
  --brand-dark: #bd3c21;
  --green: #1d6b51;
  --green-dark: #124c3b;
  --mint: #dceade;
  --yellow: #f6d976;
  --shadow: 0 22px 70px rgba(29, 51, 42, .11);
  --small-shadow: 0 10px 32px rgba(29, 51, 42, .08);
  --radius: 22px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 100; padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; height: 88px; }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 800; letter-spacing: -.04em; }
.logo img { flex: 0 0 auto; filter: drop-shadow(0 4px 10px rgba(189, 60, 33, .15)); }
nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 650; }
nav > a:not(.nav-cta) { color: var(--ink-soft); transition: color .2s; }
nav > a:not(.nav-cta):hover { color: var(--brand); }
.nav-cta { border: 1px solid rgba(22, 40, 32, .28); border-radius: 999px; padding: 10px 16px; transition: .2s; }
.nav-cta:hover { border-color: var(--ink); background: var(--ink); color: white; }
.nav-cta span { margin-left: 4px; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.6); place-items: center; }
.menu-button span { display: block; width: 17px; height: 1.5px; background: var(--ink); margin: 3px; }

.hero { position: relative; overflow: hidden; background: var(--paper); padding: 158px 0 0; min-height: 790px; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 115px; background: var(--white); clip-path: polygon(0 78%, 100% 8%, 100% 100%, 0 100%); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-one { width: 520px; height: 520px; right: -190px; top: -210px; background: rgba(246, 217, 118, .32); filter: blur(1px); }
.orb-two { width: 210px; height: 210px; left: -130px; top: 320px; border: 55px solid rgba(220, 234, 222, .75); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr); gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; }
.eyebrow > span { width: 23px; height: 2px; background: var(--brand); border-radius: 2px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 25px; max-width: 720px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(49px, 6vw, 79px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
h1 em { color: var(--brand); font-weight: 400; }
.hero-lead { max-width: 630px; margin-bottom: 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.search-box { display: grid; grid-template-columns: 1.18fr 1px .82fr auto; align-items: center; max-width: 760px; background: var(--white); padding: 10px; border-radius: 18px; box-shadow: 0 15px 48px rgba(29, 51, 42, .13); border: 1px solid rgba(22,40,32,.05); }
.search-field { display: block; padding: 2px 15px; min-width: 0; }
.search-field > span:first-child { display: block; padding-left: 27px; margin-bottom: 1px; color: var(--ink); font-size: 11px; font-weight: 800; }
.field-row { display: flex; align-items: center; min-width: 0; }
.field-row > svg { width: 18px; height: 18px; margin-right: 9px; flex: 0 0 auto; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.field-row input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; }
.field-row input::placeholder { color: #98a29d; opacity: 1; }
.search-divider { width: 1px; height: 40px; background: var(--line); }
.locate { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border: 0; border-radius: 8px; background: transparent; cursor: pointer; }
.locate:hover { background: var(--paper); }
.locate svg { width: 17px; height: 17px; fill: none; stroke: var(--green); stroke-width: 1.8; }
.locate.is-loading svg { animation: spin 1s linear infinite; }
.search-submit { height: 54px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 0; border-radius: 13px; background: var(--brand); color: white; padding: 0 21px; font-weight: 800; cursor: pointer; box-shadow: 0 8px 20px rgba(237, 90, 54, .23); transition: .2s; }
.search-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
.search-submit svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.quick-searches { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 17px; color: var(--muted); font-size: 12px; }
.quick-searches button { padding: 5px 10px; border: 1px solid #d8d7d0; border-radius: 999px; background: rgba(255,255,255,.45); color: var(--ink-soft); cursor: pointer; }
.quick-searches button:hover { border-color: var(--brand); color: var(--brand-dark); }

.trust-card { position: relative; background: rgba(255, 254, 250, .94); border: 1px solid rgba(22,40,32,.08); border-radius: 26px; padding: 25px; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.trust-card::before { content: ""; position: absolute; width: 40px; height: 40px; left: -23px; top: 80px; background: var(--yellow); clip-path: polygon(50% 0,61% 37%,100% 50%,61% 62%,50% 100%,39% 62%,0 50%,39% 37%); transform: rotate(-18deg); }
.trust-top { display: flex; align-items: center; gap: 8px; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #38a575; box-shadow: 0 0 0 5px #e6f4ec; }
.mock-person { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 21px 0 18px; }
.avatar { width: 47px; height: 47px; display: grid; place-items: center; background: var(--mint); border-radius: 14px; color: var(--green-dark); font-family: Georgia,serif; font-size: 17px; font-weight: 700; }
.mock-person strong, .mock-person span { display: block; }
.mock-person strong { font-size: 14px; }
.mock-person div span { margin-top: 2px; color: var(--muted); font-size: 11px; }
.verified-icon { width: 23px; height: 23px; display: grid !important; place-items: center; background: var(--green); color: white; border-radius: 50%; font-size: 12px; font-weight: 900; }
.mock-price { background: #f7f6f1; border: 1px solid #e9e8e1; padding: 16px; border-radius: 16px; }
.mock-price > span { display: block; color: var(--muted); font-size: 11px; }
.mock-price > strong { display: block; margin: 2px 0 12px; font-family: Georgia,serif; font-size: 28px; font-weight: 500; }
.mock-price small { color: var(--muted); font-family: ui-sans-serif,system-ui; font-size: 12px; font-weight: 500; }
.market-range { position: relative; height: 7px; border-radius: 99px; background: #e2e5e0; }
.market-range i { position: absolute; left: var(--start); width: var(--width); height: 100%; background: #9bbda7; border-radius: inherit; }
.market-range b { position: absolute; left: var(--pos); top: -4px; width: 4px; height: 15px; border-radius: 2px; background: var(--brand); }
.range-labels { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; margin-top: 5px; color: #8b9691; font-size: 8px; }
.range-labels span:nth-child(2) { text-align: center; }
.mock-facts { display: grid; gap: 9px; padding: 17px 0 14px; }
.mock-facts > div { display: flex; align-items: center; gap: 11px; }
.fact-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; font-weight: 800; }
.fact-icon.green { background: var(--mint); color: var(--green); }
.fact-icon.cream { background: #f5ead5; color: #a56922; }
.mock-facts p { margin: 0; }
.mock-facts strong, .mock-facts small { display: block; }
.mock-facts strong { font-size: 11px; }
.mock-facts small { color: var(--muted); font-size: 9px; }
.trust-note { display: flex; align-items: flex-start; gap: 8px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.trust-note > span { display: grid; place-items: center; flex: 0 0 auto; width: 15px; height: 15px; border: 1px solid #aeb7b2; border-radius: 50%; font-size: 8px; font-weight: 900; }
.proof-row { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; margin-top: 60px; padding-bottom: 104px; }
.proof-row > div { display: flex; align-items: center; gap: 11px; padding-right: 24px; }
.proof-row > div + div { border-left: 1px solid rgba(22,40,32,.13); padding-left: 24px; }
.proof-row > div > span { color: var(--brand); font-family: Georgia,serif; font-style: italic; font-size: 18px; }
.proof-row p { margin: 0; }
.proof-row strong, .proof-row small { display: block; }
.proof-row strong { font-size: 12px; }
.proof-row small { color: var(--muted); font-size: 9px; }

.section { padding: 105px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading h2, .results-heading h2, .how h2, .pro-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 4.5vw, 54px); line-height: 1.05; letter-spacing: -.04em; font-weight: 500; }
.section-heading > p { max-width: 420px; margin-bottom: 5px; color: var(--muted); font-size: 14px; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-card { position: relative; min-height: 180px; display: flex; flex-direction: column; align-items: flex-start; padding: 19px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); text-align: left; cursor: pointer; transition: .25s; }
.category-card:hover { transform: translateY(-4px); border-color: #bbc9c0; box-shadow: var(--small-shadow); }
.category-card .category-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: auto; border-radius: 13px; background: var(--paper); color: var(--green); font-size: 22px; }
.category-card:nth-child(3n+2) .category-icon { background: #fff0e9; color: var(--brand); }
.category-card:nth-child(3n+3) .category-icon { background: #f6edcf; color: #8a641b; }
.category-card strong { font-family: Georgia,serif; font-size: 17px; font-weight: 600; }
.category-card small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.category-card .arrow { position: absolute; right: 16px; top: 17px; opacity: 0; transform: translate(-5px,5px); transition: .2s; color: var(--brand); }
.category-card:hover .arrow { opacity: 1; transform: translate(0); }
.category-skeleton { min-height: 180px; border-radius: 18px; background: linear-gradient(100deg,#f0f1ed 20%,#f7f8f4 40%,#f0f1ed 60%); background-size: 220% 100%; animation: shine 1.4s infinite; }

.results-section { background: #f7f7f3; border-top: 1px solid #e9ebe6; }
.results-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 35px; }
.results-heading h2 { font-size: clamp(34px,4vw,48px); }
.results-heading > div > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.sort-control { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.sort-control select, .filter-block select { border: 1px solid var(--line); border-radius: 10px; background: var(--white); padding: 9px 30px 9px 11px; color: var(--ink); outline: 0; }
.results-layout { display: grid; grid-template-columns: 225px 1fr; gap: 24px; align-items: start; }
.filters { position: sticky; top: 20px; padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.filter-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--line); font-size: 13px; }
.filter-head button { padding: 0; border: 0; background: none; color: var(--brand); font-size: 11px; cursor: pointer; }
.filter-block { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
.filter-block > span { display: flex; justify-content: space-between; margin-bottom: 13px; font-weight: 750; }
.filter-block output { color: var(--brand-dark); font-weight: 800; }
.filter-block input[type="range"] { width: 100%; accent-color: var(--brand); }
.range-scale { display: flex; justify-content: space-between; color: var(--muted); }
.filter-block select { width: 100%; margin-top: 2px; }
.check-row { display: block; padding: 17px 0 2px; color: var(--ink-soft); font-size: 11px; cursor: pointer; }
.check-row input { position: absolute; opacity: 0; }
.check-row span { display: flex; align-items: center; gap: 8px; }
.check-row i { width: 16px; height: 16px; display: grid; place-items: center; border: 1px solid #bdc6c1; border-radius: 5px; }
.check-row input:checked + span i { background: var(--brand); border-color: var(--brand); }
.check-row input:checked + span i::after { content: "✓"; color: white; font-style: normal; font-size: 11px; }
.filter-tip { margin-top: 20px; padding: 13px; background: var(--paper); border-radius: 11px; font-size: 10px; color: var(--muted); }
.filter-tip strong { display: block; color: var(--green); text-transform: uppercase; letter-spacing: .08em; font-size: 9px; }
.filter-tip p { margin: 3px 0 0; }
.market-insight { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; margin-bottom: 12px; padding: 16px 18px; background: #eaf2eb; border: 1px solid #d5e5d8; border-radius: 15px; }
.market-insight .insight-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--green); color: white; }
.market-insight p { margin: 0; color: var(--muted); font-size: 11px; }
.market-insight strong { display: block; color: var(--ink); font-size: 13px; }
.market-insight > strong { font-family: Georgia,serif; font-size: 22px; font-weight: 500; }
.result-list { display: grid; gap: 12px; }
.result-card { display: grid; grid-template-columns: 1fr auto; gap: 22px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: .2s; }
.result-card:hover { border-color: #bac9c0; box-shadow: var(--small-shadow); }
.result-main { min-width: 0; }
.result-top { display: flex; align-items: flex-start; gap: 13px; }
.result-avatar { width: 45px; height: 45px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; background: var(--mint); color: var(--green-dark); font-family: Georgia,serif; font-weight: 700; }
.result-title { min-width: 0; }
.result-title h3 { display: flex; align-items: center; gap: 7px; margin: 1px 0 3px; font-size: 16px; }
.result-title h3 span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.verified-mini { width: 17px; height: 17px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--green); color: white; font-size: 9px; }
.result-title p { margin: 0; color: var(--muted); font-size: 11px; }
.result-description { max-width: 640px; margin: 13px 0 14px 58px; color: var(--ink-soft); font-size: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.result-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-left: 58px; }
.tag { padding: 5px 8px; border-radius: 7px; background: #f2f3ef; color: var(--muted); font-size: 9px; font-weight: 700; }
.tag.fresh { background: #e5f2ea; color: var(--green); }
.result-side { min-width: 170px; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; border-left: 1px solid var(--line); padding-left: 22px; }
.result-price { text-align: right; }
.result-price span { display: block; color: var(--muted); font-size: 9px; }
.result-price strong { display: block; font-family: Georgia,serif; font-size: 22px; font-weight: 500; }
.result-price small { font: 500 10px ui-sans-serif,system-ui; color: var(--muted); }
.result-action { display: flex; gap: 7px; width: 100%; margin-top: 18px; }
.detail-button, .contact-button { border-radius: 9px; padding: 8px 11px; font-size: 10px; font-weight: 800; cursor: pointer; }
.detail-button { flex: 1; border: 1px solid var(--line); background: white; }
.detail-button:hover { border-color: var(--ink); }
.contact-button { display: grid; place-items: center; border: 0; background: var(--brand); color: white; }
.result-loading, .empty-results { min-height: 220px; display: grid; place-items: center; align-content: center; gap: 12px; border: 1px dashed #cbd3ce; border-radius: 18px; color: var(--muted); text-align: center; }
.result-loading span { width: 28px; height: 28px; border: 3px solid #dfe7e1; border-top-color: var(--brand); border-radius: 50%; animation: spin .8s linear infinite; }
.result-loading p, .empty-results p { margin: 0; font-size: 12px; }
.empty-results strong { color: var(--ink); font-family: Georgia,serif; font-size: 22px; font-weight: 500; }
.load-more { display: block; margin: 18px auto 0; border: 1px solid var(--line); border-radius: 999px; background: white; padding: 10px 18px; font-weight: 750; font-size: 12px; cursor: pointer; }

.how { position: relative; overflow: hidden; background: var(--green-dark); color: white; }
.how::after { content: ""; position: absolute; width: 340px; height: 340px; border: 72px solid rgba(255,255,255,.035); border-radius: 50%; right: -130px; bottom: -180px; }
.how-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.eyebrow.light { color: #a9cdbb; }
.how h2 { color: #fff8ec; }
.how-copy > p:not(.eyebrow) { max-width: 440px; margin: 24px 0; color: #bed0c7; font-size: 14px; }
.text-link { display: inline-flex; gap: 25px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.35); color: #fff7ed; font-size: 12px; font-weight: 750; }
.text-link span { color: var(--yellow); font-size: 18px; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.steps li:first-child { border-top: 1px solid rgba(255,255,255,.13); }
.steps li > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--yellow); font-family: Georgia,serif; font-style: italic; }
.steps strong { display: block; margin-bottom: 4px; color: #fff8ec; font-family: Georgia,serif; font-size: 18px; font-weight: 500; }
.steps p { margin: 0; color: #aac0b5; font-size: 12px; }

.pro-section { background: var(--paper); }
.pro-card { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px 70px; align-items: end; padding: 58px 64px; overflow: hidden; border-radius: 28px; background: var(--brand); color: white; }
.pro-card::after { content: "?"; position: absolute; right: 26%; bottom: -95px; color: rgba(255,255,255,.075); font-family: Georgia,serif; font-size: 330px; line-height: 1; transform: rotate(8deg); }
.pro-badge { grid-column: 1/-1; justify-self: start; position: relative; z-index: 1; padding: 6px 11px; border: 1px solid rgba(255,255,255,.4); border-radius: 99px; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 800; }
.pro-copy, .pro-action { position: relative; z-index: 1; }
.pro-card h2 { color: #fffaf0; }
.pro-copy > p { max-width: 580px; margin: 20px 0; color: #ffe0d6; font-size: 13px; }
.pro-points { display: flex; flex-wrap: wrap; gap: 9px 20px; color: #fff6ed; font-size: 10px; font-weight: 650; }
.pro-action { min-width: 205px; text-align: center; }
.primary-button { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 14px 18px; border-radius: 12px; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 800; box-shadow: 0 12px 28px rgba(130,35,16,.18); }
.primary-button:hover { transform: translateY(-2px); }
.pro-action small { display: block; max-width: 190px; margin: 10px auto 0; color: #ffd9cf; font-size: 8px; }

footer { background: #10251d; color: #c4d2cb; padding: 65px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { color: white; }
.footer-grid > div:first-child p { margin: 14px 0 0; color: #849b90; font-size: 12px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 4px; color: white; font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: #71877d; font-size: 9px; }

dialog { width: min(630px, calc(100% - 30px)); max-height: min(760px, calc(100vh - 30px)); padding: 0; overflow: auto; border: 0; border-radius: 23px; background: var(--white); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.28); }
dialog::backdrop { background: rgba(9,24,18,.62); backdrop-filter: blur(4px); }
.dialog-close { position: sticky; z-index: 2; float: right; top: 15px; right: 15px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #edf0ec; font-size: 22px; cursor: pointer; }
.dialog-inner { padding: 42px; }
.dialog-category { color: var(--brand); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 800; }
.dialog-inner h2 { margin: 8px 45px 6px 0; font-family: Georgia,serif; font-size: 31px; line-height: 1.1; font-weight: 500; }
.dialog-location { color: var(--muted); font-size: 12px; }
.dialog-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 25px 0; }
.dialog-price-grid > div { padding: 17px; border-radius: 14px; background: var(--paper); }
.dialog-price-grid span { display: block; color: var(--muted); font-size: 9px; }
.dialog-price-grid strong { display: block; margin-top: 3px; font-family: Georgia,serif; font-size: 22px; font-weight: 500; }
.dialog-description { color: var(--ink-soft); font-size: 13px; }
.dialog-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0; }
.dialog-facts div { padding: 12px; border: 1px solid var(--line); border-radius: 11px; }
.dialog-facts span, .dialog-facts strong { display: block; }
.dialog-facts span { color: var(--muted); font-size: 9px; }
.dialog-facts strong { margin-top: 2px; font-size: 11px; }
.dialog-actions { display: flex; gap: 9px; margin-top: 24px; }
.dialog-actions a { flex: 1; padding: 12px; border-radius: 10px; text-align: center; font-size: 11px; font-weight: 800; }
.dialog-actions .call { background: var(--brand); color: white; }
.dialog-actions .whatsapp { background: var(--green); color: white; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: 24px; max-width: calc(100% - 32px); padding: 11px 16px; border-radius: 10px; background: var(--ink); color: white; font-size: 12px; box-shadow: var(--shadow); opacity: 0; transform: translate(-50%,20px); pointer-events: none; transition: .25s; }
.toast.visible { opacity: 1; transform: translate(-50%,0); }

.legal-page { background: var(--paper); }
.legal-shell { max-width: 820px; margin: 0 auto; padding: 130px 24px 90px; }
.legal-shell h1 { font-size: clamp(40px,7vw,62px); }
.legal-shell section { margin-top: 50px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.legal-shell h2 { font-family: Georgia,serif; font-size: 27px; font-weight: 500; }
.legal-shell h3 { margin: 24px 0 6px; font-size: 14px; }
.legal-shell p, .legal-shell li { color: var(--ink-soft); font-size: 13px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shine { to { background-position-x: -220%; } }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr .65fr; gap: 35px; }
  .trust-card { transform: none; }
  .category-grid { grid-template-columns: repeat(4,1fr); }
  .category-card:nth-child(n+9) { display: none; }
  .how-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 700px); }
  .site-header { height: 74px; }
  nav { position: absolute; display: none; left: 16px; right: 16px; top: 68px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
  .menu-button { display: grid; }
  .hero { padding-top: 124px; }
  .hero-grid { grid-template-columns: 1fr; }
  .trust-card { max-width: 440px; justify-self: center; display: none; }
  h1 { font-size: clamp(47px, 12vw, 69px); }
  .proof-row { padding-bottom: 80px; }
  .section { padding: 78px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .category-grid { grid-template-columns: repeat(3,1fr); }
  .category-card:nth-child(n+7) { display: none; }
  .results-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .filter-head, .filter-tip { grid-column: 1/-1; }
  .how-grid { grid-template-columns: 1fr; gap: 45px; }
  .pro-card { grid-template-columns: 1fr; padding: 44px; }
  .pro-action { width: 230px; }
}

@media (max-width: 590px) {
  .container { width: calc(100% - 28px); }
  .logo { font-size: 17px; }
  .logo img { width: 38px; height: 38px; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero::after { height: 55px; }
  h1 { margin-bottom: 20px; font-size: 48px; }
  .hero-lead { font-size: 15px; }
  .search-box { grid-template-columns: 1fr; gap: 4px; padding: 8px; }
  .search-field { padding: 8px 10px; }
  .search-divider { width: auto; height: 1px; margin: 0 10px; }
  .search-submit { width: 100%; margin-top: 3px; }
  .quick-searches span { width: 100%; }
  .proof-row { grid-template-columns: 1fr; gap: 14px; margin-top: 35px; padding-bottom: 65px; }
  .proof-row > div + div { padding-left: 0; border-left: 0; }
  .proof-row > div { padding-right: 0; }
  .section { padding: 64px 0; }
  .section-heading h2, .results-heading h2, .how h2, .pro-card h2 { font-size: 38px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .category-card { min-height: 155px; }
  .results-heading { align-items: flex-start; flex-direction: column; }
  .sort-control { width: 100%; justify-content: space-between; }
  .filters { grid-template-columns: 1fr; }
  .filter-head, .filter-tip { grid-column: auto; }
  .filter-tip { display: none; }
  .result-card { grid-template-columns: 1fr; padding: 18px; }
  .result-description, .result-tags { margin-left: 0; }
  .result-side { min-width: 0; padding: 15px 0 0; border-left: 0; border-top: 1px solid var(--line); align-items: stretch; }
  .result-price { text-align: left; }
  .market-insight { grid-template-columns: auto 1fr; }
  .market-insight > strong { grid-column: 2; }
  .pro-card { width: calc(100% - 20px); padding: 35px 25px; gap: 28px; }
  .pro-action { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .dialog-inner { padding: 37px 23px 25px; }
  .dialog-price-grid, .dialog-facts { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
