/* ══════════════════════════════════════════════════════════════════
   PLOTIGOO — home page. Layers on the tokens in app.css.

   Corporate treatment: navy chrome, orange reserved for emphasis,
   4px radii, ruled panels rather than floating cards. Portal-style
   layout kept — full-bleed banner with the nav over it and the search
   card straddling the banner's bottom edge.
   ══════════════════════════════════════════════════════════════════ */

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 22px; }

/* the banner is its own dark world, so it keeps fixed colours in both themes */
.home {
  --onbanner:       #FFFFFF;
  --onbanner-dim:   rgba(255,255,255,.74);
  --onbanner-faint: rgba(255,255,255,.5);
  --banner-h:       452px;
  --card-lift:      80px;
  --nav-h:          92px;   /* utility strip + nav row */
}

/* ── banner ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: var(--banner-h);
  background: #041229;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }

.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .55s ease; }
.slide.is-on { opacity: 1; visibility: visible; }
.slide__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
}
.slide__body {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: calc(var(--card-lift) + 20px);
}
.slide__inner {
  width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 22px;
  display: grid; grid-template-columns: minmax(0, 1fr) 424px;
  gap: 30px; align-items: end;
}

/* offer badges on the artwork */
.offers { display: flex; align-items: stretch; }
.offer {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9px 17px;
  background: rgba(4,18,41,.82);
  backdrop-filter: blur(3px);
  border-right: 1px solid rgba(255,255,255,.15);
  color: var(--onbanner);
}
.offer:first-child { border-radius: 3px 0 0 3px; }
.offer:last-child  { border-radius: 0 3px 3px 0; border-right: 0; }
.offer b { font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1; }
.offer span {
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .07em; color: var(--onbanner-dim); margin-top: 4px;
}
.offer--price {
  background: linear-gradient(150deg, #FA6507, #C85400);
  border-right: 0; flex-direction: row; align-items: baseline; gap: 7px;
}
.offer--price s { font-family: var(--data); font-size: 12px; color: rgba(255,255,255,.66); }
.offer--price b { font-family: var(--data); font-size: 22px; letter-spacing: -.02em; }
.offer--price span { margin-top: 0; align-self: flex-end; color: rgba(255,255,255,.85); }

/* advertiser copy */
.promo { color: var(--onbanner); }
.promo__tag {
  display: inline-block;
  font-size: 9.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--onbanner-faint);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 2px; padding: 2px 7px; margin-bottom: 12px;
}
.promo__ident {
  display: grid; grid-template-columns: auto auto 1fr;
  align-items: center; gap: 14px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.promo__project { font-size: 22px; font-weight: 700; letter-spacing: .02em; color: var(--orange); }
.promo__by {
  display: flex; flex-direction: column; gap: 1px;
  padding-left: 14px; border-left: 1px solid rgba(255,255,255,.18);
}
.promo__by .eyebrow { color: var(--onbanner-faint); font-size: 9px; }
.promo__by b { font-size: 13px; font-weight: 600; }
.promo__rera {
  font-size: 9.5px; line-height: 1.45; color: var(--onbanner-faint);
  padding-left: 14px; border-left: 1px solid rgba(255,255,255,.18);
}
.promo__rera a { color: var(--onbanner-faint); }

.promo__kicker {
  margin: 0 0 5px;
  font-size: 19px; font-weight: 700; line-height: 1.2; letter-spacing: -.008em;
  text-transform: uppercase;
}
.promo__kicker b { color: var(--orange); font-weight: 700; }
.promo__sub { margin: 0 0 3px; font-size: 13.5px; font-weight: 500; }
.promo__where { margin: 0 0 14px; font-size: 13px; color: var(--onbanner-dim); }

.promo__cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 3px;
  background: var(--orange); color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
}
.promo__cta:hover { background: #fff; color: #042152; }
.promo__cta svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; }

/* carousel arrows */
.heroarrow {
  position: absolute; top: calc(50% + var(--nav-h) / 2 - var(--card-lift) / 2); z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  transform: translateY(-50%);
  box-shadow: 0 2px 10px rgba(0,0,0,.34);
}
.heroarrow svg { width: 18px; height: 18px; fill: none; stroke: #042152; stroke-width: 2.4; }
.heroarrow:hover { background: #fff; }
.heroarrow--prev { left: 18px; }
.heroarrow--next { right: 18px; }

/* ── nav ─────────────────────────────────────────────────────────────
   Fixed and transparent so it floats over the banner, solid once you
   scroll past it. Kept outside .hero on purpose — position:fixed inside
   an overflow:hidden ancestor is fragile.                              */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .22s ease, box-shadow .22s ease;
}
.nav.is-stuck {
  background: rgba(4,18,41,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.09), 0 6px 20px -12px rgba(0,0,0,.7);
}

/* slim utility strip, corporate convention */
.navutil {
  background: rgba(4,18,41,.55);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav.is-stuck .navutil { background: transparent; }
.navutil__in {
  max-width: 1320px; margin: 0 auto; padding: 0 22px;
  height: 34px; display: flex; align-items: center; gap: 16px;
  font-size: 11.5px; color: var(--onbanner-dim);
}
.navutil__tag { font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--onbanner); }
.navutil__tag b { color: var(--orange); font-weight: 600; }
.navutil__sep { width: 1px; height: 12px; background: rgba(255,255,255,.22); }
.navutil__in a { color: var(--onbanner-dim); text-decoration: none; }
.navutil__in a:hover { color: var(--onbanner); }
.navutil__end { margin-left: auto; display: flex; align-items: center; gap: 15px; }

.nav__in {
  max-width: 1320px; margin: 0 auto;
  padding: 12px 22px;
  display: flex; align-items: center; gap: 22px;
}

.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand .logo { height: 32px; }

.citysel { position: relative; flex: none; }
.citysel select {
  appearance: none; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.07);
  color: var(--onbanner); font-size: 13.5px; font-weight: 600;
  padding: 7px 28px 7px 11px; border-radius: 3px; cursor: pointer;
}
.citysel select option { color: #0B1B36; background: #fff; }
.citysel:hover select { background: rgba(255,255,255,.15); }
.citysel__chev {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; fill: none; stroke: var(--onbanner); stroke-width: 2.2;
  pointer-events: none;
}

.nav__links { display: flex; align-items: center; gap: 20px; }
.nav__links a {
  position: relative; padding: 5px 0;
  font-size: 13.5px; font-weight: 500; color: var(--onbanner-dim); text-decoration: none;
}
.nav__links a:hover { color: var(--onbanner); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform .16s;
}
.nav__links a:hover::after { transform: scaleX(1); }
.tagnew {
  position: absolute; top: -8px; right: -23px;
  font-size: 8px; font-weight: 700; letter-spacing: .07em;
  background: var(--orange); color: #fff; border-radius: 2px; padding: 1px 4px;
}

.nav__end { margin-left: auto; display: flex; align-items: center; gap: 9px; }
.postbtn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--orange); color: #fff; text-decoration: none;
  border-radius: 3px; padding: 9px 15px;
  font-size: 13.5px; font-weight: 600;
}
.postbtn span {
  font-size: 9px; font-weight: 700; letter-spacing: .07em;
  background: rgba(0,0,0,.26); color: #fff; border-radius: 2px; padding: 2px 5px;
}
.postbtn:hover { background: #fff; color: #042152; }
.postbtn:hover span { background: #042152; color: #fff; }

.iconbtn {
  width: 34px; height: 34px; border-radius: 3px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  color: var(--onbanner); text-decoration: none;
}
.iconbtn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.iconbtn:hover { background: rgba(255,255,255,.15); }

/* drawer for small screens */
.drawer {
  display: none;
  background: rgba(4,18,41,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 6px 22px 14px;
}
.menu-open .drawer { display: flex; flex-direction: column; }
.drawer a {
  padding: 11px 2px; font-size: 14.5px; font-weight: 500;
  color: var(--onbanner-dim); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer a:last-child { border-bottom: 0; }
.drawer a:hover { color: var(--onbanner); }
.nav__burger { display: none; }

/* ── search card ─────────────────────────────────────────────────── */
.searchwrap {
  max-width: 1320px; margin: calc(var(--card-lift) * -1) auto 0;
  padding: 0 22px; position: relative; z-index: 5;
}
.searchcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}

.searchcard__tabs {
  display: flex; align-items: stretch;
  padding: 0 6px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  overflow-x: auto;
}
.stab {
  position: relative;
  padding: 14px 15px 12px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.stab:hover { color: var(--ink); }
.stab.is-on {
  color: var(--accent-ink); font-weight: 600;
  border-bottom-color: var(--action);
  background: var(--surface);
}
.stab__dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--action); vertical-align: super; margin-left: 4px;
}
.stab--post {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  border-left: 1px solid var(--line); padding-left: 18px; color: var(--action-ink);
  font-weight: 600;
}
.stab--post span {
  font-size: 9px; font-weight: 700; letter-spacing: .07em;
  background: var(--good); color: #fff; border-radius: 2px; padding: 2px 5px;
}

.searchcard__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center; gap: 10px;
  padding: 12px 13px 12px 0;
}

.segsel { position: relative; flex: none; }
.segsel select {
  appearance: none; border: 0; background: none;
  padding: 12px 34px 12px 20px;
  font-size: 14.5px; font-weight: 600; color: var(--ink); cursor: pointer;
}
.segsel select:focus { outline: none; }
.segsel__chev {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 2.2;
  pointer-events: none;
}
.segsel::after {
  content: ""; position: absolute; right: 0; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}

.seekbox { position: relative; display: flex; align-items: center; }
.seekbox__lens {
  position: absolute; left: 5px;
  width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 2;
  pointer-events: none;
}
.seekbox input {
  width: 100%; border: 0; background: none;
  padding: 12px 8px 12px 32px;
  font-size: 15px; color: var(--ink);
}
.seekbox input:focus { outline: none; }
.seekbox input::placeholder { color: var(--muted); }

.roundbtn {
  width: 38px; height: 38px; border-radius: 3px;
  background: var(--accent-wash);
  display: grid; place-items: center; flex: none;
}
.roundbtn svg { width: 18px; height: 18px; fill: none; stroke: var(--accent-ink); stroke-width: 1.9; }
.roundbtn:hover { background: color-mix(in srgb, var(--accent) 18%, var(--surface)); }
.roundbtn.is-live { background: var(--crit); }
.roundbtn.is-live svg { stroke: #fff; }

.searchgo {
  padding: 12px 30px; border-radius: 3px;
  background: var(--accent); color: var(--on-accent);
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
}
.searchgo:hover { background: var(--accent-ink); }

.seekhint { margin: 0; padding: 0 16px 12px; font-size: 12.5px; color: var(--muted); }
.seekhint.is-read {
  color: var(--action-ink); font-weight: 500;
  font-family: var(--data); font-size: 12px;
}

/* recent searches */
.recents {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  justify-content: center; padding: 18px 0 0;
}
.recents__label { font-size: 13px; color: var(--muted); font-weight: 500; }
.rchip {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; background: var(--surface);
  font-size: 13px; color: var(--ink-2); text-decoration: none;
  max-width: 340px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rchip svg { width: 14px; height: 14px; fill: none; stroke: var(--muted); stroke-width: 1.9; flex: none; }
.rchip:hover { border-color: var(--accent); color: var(--accent-ink); }
.rchip:hover svg { stroke: var(--accent); }
.rchip--all { color: var(--accent-ink); font-weight: 600; }

/* ── continue browsing + activity rail ───────────────────────────── */
.browse {
  padding: 40px 0 0;
  display: grid; grid-template-columns: minmax(0, 1fr) 316px; gap: 24px;
  align-items: start;
}
.browse__h { margin: 0 0 14px; font-size: 19px; font-weight: 600; }
.browse__h--sub { margin-top: 26px; font-size: 16px; color: var(--ink-2); }
.browse__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.bchip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 11px 16px; background: var(--surface);
  font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none;
}
.bchip:hover { border-color: var(--accent); box-shadow: var(--shadow-1); }
.bchip--plain { font-size: 13px; padding: 8px 13px; color: var(--ink-2); }
.bchip__ico { width: 26px; height: 26px; border-radius: 3px; display: grid; place-items: center; flex: none; }
.bchip__ico svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.bchip__ico--buy  { background: var(--accent-wash); color: var(--accent-ink); }
.bchip__ico--rent { background: var(--good-wash);   color: var(--good); }
.bchip__ico--new  { background: var(--action-wash); color: var(--action-ink); }

.usercard {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-1);
}
.usercard__top {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 16px; border-bottom: 1px solid var(--line-soft);
  background: var(--surface-2);
}
.usercard__av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-wash); color: var(--accent-ink);
  display: grid; place-items: center; flex: none;
}
.usercard__av svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.usercard__name { font-size: 15px; font-weight: 600; }
.usercard__body { padding: 14px 16px 16px; }
.usercard__body .eyebrow { display: block; margin-bottom: 10px; }

.userlist { list-style: none; margin: 0; padding: 0; }
.userlist li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px;
}
.userlist li:last-child { border-bottom: 0; }
.userlist a { color: var(--ink-2); text-decoration: none; }
.userlist a:hover { color: var(--accent-ink); text-decoration: underline; }
.userlist .num { font-size: 11px; color: var(--muted); flex: none; }
.userempty { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ── section scaffolding ─────────────────────────────────────────── */
.sect { padding: 50px 0 0; }
.sect__head { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.sect__head h2 {
  margin: 6px 0 0;
  font-size: clamp(21px, 2.4vw, 27px); font-weight: 600;
  letter-spacing: -.015em; line-height: 1.18;
}
.sect__head p { margin: 6px 0 0; font-size: 14px; color: var(--muted); max-width: 60ch; }

.chip {
  font-size: 12.5px; text-decoration: none; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px; background: var(--surface);
}
.chip:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent-wash); }

/* portals */
.portals {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
}
.portal {
  flex: 1 1 150px; padding: 15px 16px;
  border-left: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.portal:first-child { border-left: 0; }
.portal:hover { background: var(--surface-2); }
.portal__swatch {
  width: 22px; height: 22px; border-radius: 3px; flex: none;
  background: linear-gradient(150deg, hsl(var(--h) 38% 28%), hsl(calc(var(--h) + 22) 34% 44%));
}
.portal__name { font-size: 13.5px; font-weight: 600; }
.portal__host { display: block; font-family: var(--data); font-size: 10.5px; color: var(--muted); }

/* how it works */
.steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
}
.step { padding: 22px; border-left: 1px solid var(--line-soft); }
.step:first-child { border-left: 0; }
.step__n {
  display: block; margin-bottom: 12px;
  font-family: var(--data); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; color: var(--action-ink);
}
.step h3 { margin: 0 0 7px; font-size: 17px; font-weight: 600; line-height: 1.3; }
.step p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.step code {
  font-family: var(--data); font-size: 12px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 2px; padding: 1px 5px; color: var(--ink-2);
}

/* locality directory */
.dir { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; }
.dir__band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 12px 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); background: var(--surface-2);
}
.dir__cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); }
.dir__cell {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 10px 16px; font-size: 13.5px; text-decoration: none;
  border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft);
}
.dir__cell:hover { background: var(--accent-wash); color: var(--accent-ink); }
.dir__cell .rent {
  font-family: var(--data); font-variant-numeric: tabular-nums;
  font-size: 12px; color: var(--muted); flex: none;
}
.dir__cell:hover .rent { color: var(--accent-ink); }

/* cities */
.citygrid { display: flex; flex-wrap: wrap; gap: 8px; }
.citychip {
  border: 1px solid var(--line); border-radius: 3px;
  padding: 9px 15px; background: var(--surface);
  font-size: 13.5px; font-weight: 500; color: var(--ink-2); text-decoration: none;
}
.citychip:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent-wash); }

/* owners band */
.ownerband {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
  border: 1px solid var(--line); border-left: 3px solid var(--action);
  border-radius: var(--r); background: var(--surface); padding: 22px 26px;
}
.ownerband h2 { margin: 6px 0 6px; font-size: 21px; font-weight: 600; }
.ownerband p { margin: 0; font-size: 14px; color: var(--muted); max-width: 62ch; }
.ownerband__cta {
  flex: none; padding: 11px 22px; border-radius: 3px;
  background: var(--accent); color: var(--on-accent); text-decoration: none;
  font-size: 14px; font-weight: 600;
}
.ownerband__cta:hover { background: var(--accent-ink); }

/* ── site footer ──────────────────────────────────────────────────────
   Five columns on navy: brand block, then four link columns. A hairline
   rule separates the links from the legal bar, which carries the
   copyright and the one disclosure that has to be on every page.       */
.sitefoot {
  margin-top: 56px;
  background: var(--navy);          /* fixed brand navy in both themes */
  border-top: 3px solid var(--orange);
}
.sitefoot__top {
  max-width: 1320px; margin: 0 auto; padding: 38px 22px 32px;
  display: grid;
  grid-template-columns: minmax(240px, 1.7fr) repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.sitefoot__brandcol { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.sitefoot__brandcol .logo { height: 34px; }
.sitefoot__pitch {
  margin: 0; max-width: 42ch;
  font-size: 13px; line-height: 1.62; color: rgba(255,255,255,.66);
}
.sitefoot__badges { display: flex; flex-wrap: wrap; gap: 7px; }
.fbadge {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 2px; padding: 4px 9px;
}

.sitefoot__col { display: flex; flex-direction: column; gap: 2px; }
.sitefoot__h {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.sitefoot__col a {
  font-size: 13px; color: rgba(255,255,255,.74);
  text-decoration: none; padding: 5px 0;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.sitefoot__col a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.4); }

.sitefoot__bar {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 22px 26px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: 22px; align-items: start;
}
.sitefoot__copy {
  font-family: var(--data); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.8); white-space: nowrap;
}
.sitefoot__legal {
  margin: 0; font-size: 11.5px; line-height: 1.6;
  color: rgba(255,255,255,.5); max-width: 96ch;
}

/* ── responsive ──────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .slide__inner { grid-template-columns: minmax(0, 1fr) 360px; }
  .promo__project { font-size: 19px; }
  /* brand block takes the full first row, links share the second */
  .sitefoot__top { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 26px; }
  .sitefoot__brandcol { grid-column: 1 / -1; }
  .sitefoot__pitch { max-width: 62ch; }
}
@media (max-width: 1000px) {
  .home { --banner-h: 430px; }
  .slide__inner { grid-template-columns: minmax(0, 1fr); }
  .offers { display: none; }
  .promo__ident { grid-template-columns: 1fr; gap: 8px; }
  .promo__by, .promo__rera { padding-left: 0; border-left: 0; }
  .searchcard__row { grid-template-columns: auto minmax(0, 1fr) auto; }
  .searchgo { grid-column: 1 / -1; margin: 0 13px; }
  .browse { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--line-soft); }
  .step:first-child { border-top: 0; }
  .sitefoot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sitefoot__bar { grid-template-columns: minmax(0, 1fr); gap: 10px; }
}
@media (max-width: 680px) {
  .home { --banner-h: 408px; --card-lift: 58px; --nav-h: 84px; }
  .wrap, .searchwrap, .nav__in, .navutil__in, .slide__inner,
  .sitefoot__top, .sitefoot__bar { padding-left: 14px; padding-right: 14px; }
  .citysel, .navutil__end { display: none; }
  .postbtn span { display: none; }
  .brand .logo { height: 27px; }
  .promo__kicker { font-size: 16px; }
  .searchcard__row { grid-template-columns: minmax(0, 1fr) auto auto; padding-right: 10px; }
  .segsel { grid-column: 1 / -1; }
  .segsel::after { display: none; }
  .segsel select { padding-left: 14px; }
  .recents { justify-content: flex-start; }
  .stab--post { display: none; }
  .sitefoot__top { grid-template-columns: minmax(0, 1fr); gap: 26px; padding-top: 30px; }
  .sitefoot__brandcol .logo { height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
  .nav__links a::after { transition: none; }
}
