/*
 * Mishra Properties — public website, Airbnb-style.  Rebuilt 24 Sep 2026.
 *
 * Measured on airbnb.co.in the same day and copied on purpose:
 *   text #222 on white · secondary #6A6A6A · hairlines #DDDDDD / #EBEBEB
 *   card photo 4:3 with a 16px radius, no card border, no card shadow
 *   card text 15px on a 20px line, title weight 600
 *   listing title 26px, section headings 22px
 *   primary button: pink-red gradient pill, 48px tall
 *   price box: 24px padding, 12px radius, shadow 0 6px 16px rgba(0,0,0,.12)
 *   filter chips: 1px #DDD border, pill radius
 *
 * ONE colour comes from config: --accent (BRAND_ACCENT, default #E31C5F).
 * Every baby-pink tint and the gradient are derived from it, so a reselling
 * broker changes one value.  Static fallbacks below are the same colours
 * pre-computed for the default, for browsers without color-mix().
 *
 * THE RULE THAT ANSWERS "NO BLANK BOXES": nothing here is a fixed grid of
 * fact cells.  Facts are lines of text or lists; a missing fact is a missing
 * line, never an empty box.
 */

/* ------------------------------------------------------------- tokens --- */
:root {
  --accent: #E31C5F;
  --ink: #222222;
  --ink-2: #6A6A6A;          /* 5.3:1 on white */
  --ink-3: #929292;          /* decorative only (chevrons), never body text */
  --line: #DDDDDD;
  --line-2: #EBEBEB;
  --soft: #F7F7F7;
  --soft-2: #F0F0F0;

  /* fallbacks for the default accent (see the @supports block) */
  --accent-ink: #B9164D;     /* accent-coloured TEXT: 6.4:1 on white */
  --accent-l: #E61E4D;
  --accent-d: #D70466;
  --tint: #FDF1F5;           /* baby pink surface */
  --tint-2: #FCE4EC;         /* selected chip */
  --tint-line: #F7BFD2;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .04);

  --font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --gutter: 24px;
  --maxw: 1280px;
}

@supports (color: color-mix(in srgb, red, blue)) {
  :root {
    --accent-ink: color-mix(in oklab, var(--accent), black 18%);
    --accent-l: color-mix(in oklab, var(--accent), #ff2a2a 16%);
    --accent-d: color-mix(in oklab, var(--accent), #a8006e 28%);
    --tint: color-mix(in srgb, var(--accent) 6%, white);
    --tint-2: color-mix(in srgb, var(--accent) 12%, white);
    --tint-line: color-mix(in srgb, var(--accent) 28%, white);
  }
}

:root { --grad: linear-gradient(to right, var(--accent-l) 0%, var(--accent) 50%, var(--accent-d) 100%); }

@media (max-width: 743px) {
  :root { --gutter: 16px; }
}
/* Airbnb's side margins grow with the screen: 24px, then 40px from 1128px. */
@media (min-width: 1128px) {
  :root { --gutter: 40px; --maxw: 1360px; }
}

/* --------------------------------------------------------------- base --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
b, strong { font-weight: 700; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.muted { color: var(--ink-2); }
.num { font-variant-numeric: tabular-nums; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* The honeypot.  Must stay invisible to people and visible to bots. */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.icon {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.icon-sm { width: 18px; height: 18px; stroke-width: 2; }
.icon-xs { width: 14px; height: 14px; stroke-width: 2.25; }

html.no-scroll, html.no-scroll body { overflow: hidden; }

/* ------------------------------------------------------------ buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px;
  border: 0; border-radius: var(--r-pill);
  font-size: 16px; font-weight: 600; line-height: 1; white-space: nowrap;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: transform .1s ease, filter .15s ease, background-color .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-grad { background: var(--grad); color: #fff; }
.btn-grad:hover { filter: brightness(.94) saturate(1.05); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-ghost:hover { background: var(--soft); }
.btn-block { display: flex; width: 100%; }
.btn-lg { height: 52px; }
.btn-block + .btn-block { margin-top: 10px; }

.icon-btn {
  display: inline-grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .15s ease;
}
.icon-btn:hover { box-shadow: inset 0 0 0 1px var(--ink), var(--shadow-sm); }
.icon-btn .icon { width: 20px; height: 20px; }

.link-btn {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 8px 10px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { background: var(--soft); }

/* ------------------------------------------------------------- header --- */
.site-header { background: #fff; border-bottom: 1px solid var(--line-2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 80px; }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
  display: grid; place-items: center; flex: none;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); color: #fff;
  font-size: 14px; font-weight: 800; letter-spacing: .02em;
}
.brand-name {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--accent);
}

.nav { display: flex; align-items: center; gap: 4px; flex: none; }
.nav-link {
  display: inline-flex; align-items: center; height: 42px; padding: 0 14px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
}
.nav-link:hover { background: var(--soft); }
.lbl-short { display: none; }

/* Call and WhatsApp in the header: labelled pills on a computer, icons on a phone */
.head-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 42px; padding: 0 16px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: filter .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.head-call { margin-left: 6px; background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.head-call:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.head-wa { background: var(--grad); color: #fff; }
.head-wa:hover { filter: brightness(.94) saturate(1.05); }

/* -------------------------------------------------------------- intro --- */
.intro { padding-top: 32px; padding-bottom: 6px; }
.intro h1 { font-size: 30px; line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }
.intro-types { margin-top: 4px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.trust { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 12px; font-size: 15px; color: var(--ink-2); }
.trust li { display: flex; align-items: flex-start; gap: 8px; }
.trust b { color: var(--ink); }
.trust .icon { color: var(--accent); margin-top: 2px; }

/* --------------------------------------------------------- filter bar --- */
.filterbar {
  position: sticky; top: 0; z-index: 20;
  background: #fff;
  transition: box-shadow .2s ease;
}
.filterbar.is-stuck { box-shadow: 0 1px 0 var(--line-2), 0 8px 16px -12px rgba(0, 0, 0, .25); }
.filterbar-inner { display: flex; align-items: center; gap: 12px; padding-top: 14px; padding-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; min-width: 0; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 500; line-height: 1; white-space: nowrap;
  cursor: pointer; user-select: none; list-style: none;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.chip::-webkit-details-marker { display: none; }
.chip::marker { content: ""; }
.chip:hover { border-color: var(--ink); }
.chip .icon-xs { color: var(--ink-2); }
.chip.is-on, .dd.is-on > .chip {
  background: var(--tint-2); border-color: var(--accent);
  color: var(--accent-ink); font-weight: 600;
}
.chip.is-on .icon-xs, .dd.is-on > .chip .icon-xs { color: var(--accent-ink); }
.dd[open] > .chip { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.dd[open] > .chip .icon-xs { transform: rotate(180deg); }

/* dropdowns: <details> — open/close without JavaScript */
.dd { position: relative; }
/* An invisible full-screen layer behind the open panel: a click anywhere
   outside lands on the summary and closes it — no script needed. */
.dd[open] > summary::before {
  content: ""; position: fixed; inset: 0; z-index: 40; cursor: default;
}
.dd-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 50;
  width: 300px; max-height: min(440px, 70vh); overflow: auto;
  padding: 8px; border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-lg);
  animation: dd-pop .14s ease-out;
}
.dd-right .dd-panel { left: auto; right: 0; }
.dd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 6px; font-size: 16px; font-weight: 700;
}
.dd-close { display: none; }
.dd-opt {
  display: flex; align-items: center; gap: 12px;
  min-height: 48px; padding: 10px 12px; border-radius: 10px;
  font-size: 15px; color: var(--ink);
}
.dd-opt:hover { background: var(--soft); }
.dd-label { flex: 1; min-width: 0; }
.dd-opt .n {
  min-width: 28px; padding: 2px 8px; border-radius: var(--r-pill);
  background: var(--soft); color: var(--ink-2);
  font-size: 13px; font-weight: 600; text-align: center;
}
.radio {
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  border: 1.5px solid #B0B0B0; transition: border .12s ease;
}
.dd-opt.on .radio { border: 6px solid var(--accent); }
.dd-opt.on .dd-label { font-weight: 700; }
.dd-opt.on .n { background: var(--tint-2); color: var(--accent-ink); }

@keyframes dd-pop { from { opacity: 0; transform: translateY(-4px); } }
@keyframes sheet-up { from { transform: translateY(100%); } }

/* ------------------------------------------------------------ results --- */
.results-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-top: 4px; padding-bottom: 20px; font-size: 15px; color: var(--ink-2);
}
.results-meta b { color: var(--ink); }
.clear-all { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.grid {
  --cols: 1;
  display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 36px 24px; padding-bottom: 56px;
}
@media (min-width: 600px) { .grid { --cols: 2; } }
@media (min-width: 950px) { .grid { --cols: 3; } }
@media (min-width: 1240px) { .grid { --cols: 4; } }

/* --------------------------------------------------------------- card --- */
.card { position: relative; display: flex; flex-direction: column; min-width: 0; }
.card-media {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--r-lg); overflow: hidden; isolation: isolate;
  background: var(--soft-2);
}
.card-track {
  display: flex; width: 100%; height: 100%;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none;
}
.card-track::-webkit-scrollbar { display: none; }
.card-track img {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; scroll-snap-align: start; scroll-snap-stop: always;
}
.card-nav {
  position: absolute; top: 50%; z-index: 2;
  display: grid; place-items: center;
  width: 32px; height: 32px; margin-top: -16px; border-radius: 50%;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
  opacity: 0; transition: opacity .2s ease, transform .15s ease;
}
.card-nav:hover { transform: scale(1.06); background: #fff; }
.card-nav.prev { left: 12px; }
.card-nav.next { right: 12px; }
.card-nav[hidden] { display: none; }
.card-media:hover .card-nav, .card-nav:focus-visible { opacity: 1; }
@media (hover: none) { .card-nav { display: none; } }
.card-dots {
  position: absolute; left: 0; right: 0; bottom: 10px; z-index: 2;
  display: flex; justify-content: center; gap: 5px; pointer-events: none;
}
.card-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, .6); transition: background-color .2s ease, transform .2s ease;
}
.card-dots i.on { background: #fff; transform: scale(1.15); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; pointer-events: none;
  padding: 6px 11px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .96); color: var(--ink);
  font-size: 13px; font-weight: 600; line-height: 1.2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

/* A listing with no photo: not a grey picture — a soft pink tile that asks. */
.card-media.is-empty { background: linear-gradient(155deg, var(--tint) 0%, var(--tint-2) 100%); }
.card-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding-bottom: 44px;
}
.empty-icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #fff; color: var(--accent); box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}
.empty-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.empty-cta {
  position: absolute; left: 50%; bottom: 18px; z-index: 2; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px; border-radius: var(--r-pill);
  background: #fff; color: var(--accent-ink);
  border: 1px solid var(--tint-line); white-space: nowrap;
  font-size: 14px; font-weight: 700;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.empty-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.card-body {
  display: flex; flex-direction: column; gap: 1px;
  padding-top: 12px; font-size: 15px; line-height: 20px; color: var(--ink-2);
}
.card-body:focus-visible { outline-offset: 4px; border-radius: var(--r-sm); }
.card-title { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; color: var(--ink); font-weight: 600; }
.card-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-ref { flex: none; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.card-line { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-price { margin-top: 5px; color: var(--ink); }
.card-price b { font-weight: 700; }

/* ---------------------------------------------------------- no results --- */
.empty { max-width: 540px; margin: 0 auto; padding: 56px 0 72px; text-align: center; }
.empty-badge {
  display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 18px;
  border-radius: 50%; background: var(--tint); color: var(--accent);
}
.empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.empty-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }

/* ----------------------------------------------------- how it works --- */
.how { padding-top: 56px; padding-bottom: 48px; border-top: 1px solid var(--line-2); }
.how h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.how-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.how-icon {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 14px; background: var(--tint); color: var(--accent-ink);
}
.how-step h3 { margin: 16px 0 4px; font-size: 17px; font-weight: 700; }
.how-step p { font-size: 15px; }
.seo-note { max-width: 760px; padding-bottom: 48px; font-size: 13px; line-height: 1.6; color: var(--ink-2); }

/* ------------------------------------------------------ listing page --- */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  padding-top: 20px; font-size: 13px; color: var(--ink-2);
}
.crumbs a:hover { text-decoration: underline; color: var(--ink); }
.crumbs .icon-xs { color: var(--ink-3); }
.crumbs span { color: var(--ink); font-weight: 600; }

.lp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 10px 0 20px; }
.lp-head h1 { font-size: 26px; line-height: 30px; font-weight: 700; letter-spacing: -.01em; }
.lp-sub { margin-top: 6px; font-size: 15px; color: var(--ink-2); }

.gallery-wrap { position: relative; }
.gallery {
  display: grid; gap: 8px;
  height: clamp(300px, 38vw, 470px);
  border-radius: var(--r-lg); overflow: hidden;
}
.gallery.n1 { grid-template-columns: 1fr; }
.gallery.n2 { grid-template-columns: 1fr 1fr; }
.gallery.n3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery.n5 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery.n3 .g0, .gallery.n5 .g0 { grid-row: 1 / span 2; }
.gallery.n1 .g:nth-child(n+2),
.gallery.n2 .g:nth-child(n+3),
.gallery.n3 .g:nth-child(n+4),
.gallery.n5 .g:nth-child(n+6) { display: none; }
.g { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; background: var(--soft-2); cursor: zoom-in; }
.g img { width: 100%; height: 100%; object-fit: cover; transition: filter .2s ease; }
.g:hover img { filter: brightness(.88); }
.show-all {
  position: absolute; right: 20px; bottom: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-sm);
  background: #fff; box-shadow: inset 0 0 0 1px var(--ink), var(--shadow-sm);
  font-size: 14px; font-weight: 600;
}
.show-all:hover { background: var(--soft); }
.gallery-count { display: none; }

.gallery-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  min-height: 300px; padding: 40px 24px; border-radius: var(--r-lg); text-align: center;
  background: linear-gradient(155deg, var(--tint) 0%, var(--tint-2) 100%);
}
.gallery-empty h2 { font-size: 22px; font-weight: 700; margin-top: 4px; }
.gallery-empty p { max-width: 420px; margin-bottom: 8px; }

.lp-body {
  display: grid; grid-template-columns: minmax(0, 1fr) 372px;
  column-gap: clamp(40px, 7vw, 96px); align-items: start;
}
.lp-main > section { padding: 32px 0; border-bottom: 1px solid var(--line); }
.lp-main > section:last-child { border-bottom: 0; }
.lp-main h2 { font-size: 22px; line-height: 26px; font-weight: 700; }
.lp-section h2 { margin-bottom: 22px; }

.lp-main h2.facts-line { font-size: 20px; line-height: 26px; font-weight: 600; }
.for-line { margin-top: 4px; font-size: 15px; color: var(--ink-2); }

/* "Checked by Mishra Properties" — inside the price box on a computer, in the
   page flow on a phone (where the price box is not shown). */
.checked {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--r-md); background: var(--tint);
}
.checked-icon {
  display: grid; place-items: center; flex: none; width: 40px; height: 40px;
  border-radius: 50%; background: #fff; color: var(--accent);
}
.checked-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.checked-text { font-size: 14px; color: var(--ink-2); }
.checked.in-card { margin-top: 16px; }
.phone-only { display: none; }
.brokerage-line { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; font-size: 15px; color: var(--ink-2); }
.brokerage-line b { color: var(--ink); }
.brokerage-line .icon { color: var(--accent); margin-top: 2px; }

.features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
.features li { display: flex; align-items: flex-start; gap: 14px; }
.features .icon { margin-top: 2px; }
.f-label { display: block; font-size: 14px; color: var(--ink-2); }
.f-value { display: block; font-size: 16px; font-weight: 500; }

.where { display: flex; align-items: flex-start; gap: 14px; }
.where-icon {
  display: grid; place-items: center; flex: none; width: 46px; height: 46px;
  border-radius: 50%; background: var(--soft);
}
.where-name { font-size: 16px; font-weight: 600; }
.where .muted { font-size: 15px; margin-top: 2px; }

.steps { display: grid; gap: 20px; }
.steps li { display: flex; align-items: flex-start; gap: 16px; }
.step-n {
  display: grid; place-items: center; flex: none; width: 32px; height: 32px;
  border-radius: 50%; background: var(--ink); color: #fff; font-size: 14px; font-weight: 700;
}
.steps h3 { font-size: 16px; font-weight: 700; }
.steps p { font-size: 15px; }

.lp-side { position: relative; height: 100%; }
.price-card {
  position: sticky; top: 24px; margin-top: 32px; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; box-shadow: var(--shadow-md);
}
.pc-price { font-size: 16px; }
.pc-price b { font-size: 24px; font-weight: 700; }
.pc-meta { margin: 4px 0 20px; font-size: 14px; color: var(--ink-2); }
.pc-list { display: grid; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-2); font-size: 14px; color: var(--ink-2); }
.pc-list li { display: flex; align-items: flex-start; gap: 10px; }
.pc-list b { color: var(--ink); }
.pc-list .icon { color: var(--accent); margin-top: 1px; }

.more { padding-top: 48px; border-top: 1px solid var(--line); }
.more h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

.bottom-bar { display: none; }

/* ------------------------------------------------------ photo viewer --- */
/* PhotoSwipe 5 (static/vendor/photoswipe), themed to the site: swipe between
   photos, pinch or double-tap to zoom, drag to pan, Esc/arrows on a computer.
   The strip of small photos along the bottom is ours — as 99acres does it. */
.pswp {
  --pswp-bg: #111;
  --pswp-placeholder-bg: #1c1c1c;
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #222;
  --pswp-icon-stroke-color: #222;
  font-family: var(--font);
}
.pswp__counter { font-size: 14px; font-weight: 600; margin-left: 16px; opacity: .95; }
/* double-click to zoom on a computer — say so with the cursor */
.pswp--has_mouse .pswp__img { cursor: zoom-in; }
.pswp--has_mouse.pswp--zoomed-in .pswp__img { cursor: grab; }
.pswp__thumbs {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 10;
  display: flex; gap: 8px;
  padding: 18px 16px calc(14px + env(safe-area-inset-bottom));
  overflow-x: auto; scrollbar-width: none; overscroll-behavior-x: contain;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
}
.pswp__thumbs::-webkit-scrollbar { display: none; }
/* centre the strip when it is shorter than the screen, scroll when longer */
.pswp__thumbs::before, .pswp__thumbs::after { content: ""; flex: 1 0 0; }
.pswp__thumb {
  flex: 0 0 auto; width: 68px; height: 50px; padding: 0; border: 0;
  border-radius: 8px; overflow: hidden; background: #2a2a2a;
  opacity: .5; cursor: pointer;
  outline: 2px solid transparent; outline-offset: 2px;
  transition: opacity .15s ease, outline-color .15s ease, transform .15s ease;
}
.pswp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pswp__thumb:hover { opacity: .85; }
.pswp__thumb.is-on { opacity: 1; outline-color: #fff; }
.pswp__thumb:focus-visible { outline-color: var(--accent); opacity: 1; }

/* --------------------------------------------------------- owner page --- */
.owner {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-areas: "pitch form" "more form";
  /* row 1 hugs the headline; the tall form's extra height goes to row 2,
     otherwise a gap opens between the headline and the promises */
  grid-template-rows: auto 1fr;
  gap: 0 64px; align-items: start; padding-top: 56px; padding-bottom: 80px;
}
.owner-pitch { grid-area: pitch; }
.owner-form { grid-area: form; align-self: stretch; }
.owner-more { grid-area: more; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); }
.owner-pitch h1 { margin: 12px 0 18px; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.06; font-weight: 800; letter-spacing: -.03em; }
.accent-text { color: var(--accent); }
.lede { max-width: 540px; font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.owner-points { display: grid; gap: 22px; margin-top: 36px; }
.owner-points li { display: flex; align-items: flex-start; gap: 16px; }
.op-icon {
  display: grid; place-items: center; flex: none; width: 48px; height: 48px;
  border-radius: 14px; background: var(--tint); color: var(--accent-ink);
}
.owner-points h3 { font-size: 16px; font-weight: 700; }
.owner-points p { font-size: 15px; }

.form-card {
  position: sticky; top: 24px; padding: 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-md);
}
.form-card h2 { font-size: 22px; font-weight: 700; }
.form-sub { margin: 4px 0 22px; font-size: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.label { font-size: 14px; font-weight: 600; }
.label em { margin-left: 6px; font-size: 12px; font-style: normal; font-weight: 600; color: var(--accent-ink); }
.field input, .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 14px;
  border: 1px solid #B0B0B0; border-radius: 10px;
  background: #fff; color: var(--ink);
  font: inherit; font-size: 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { height: auto; min-height: 96px; padding: 12px 14px; resize: vertical; line-height: 1.45; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.field input::placeholder, .field textarea::placeholder { color: #717171; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink);
}
.hint { font-size: 13px; color: var(--ink-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.errors {
  margin-bottom: 18px; padding: 12px 16px; border-radius: var(--r-md);
  background: var(--tint); border: 1px solid var(--tint-line); color: var(--accent-ink);
  font-size: 14px; font-weight: 600;
}
.errors ul { padding-left: 18px; list-style: disc; }
.form-foot {
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
  margin-top: 12px; text-align: center; font-size: 13px; color: var(--ink-2);
}
.form-foot a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------- thanks / 404 --- */
.notice { max-width: 640px; padding-top: 72px; padding-bottom: 88px; text-align: center; }
.notice-icon {
  display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 20px;
  border-radius: 50%; background: var(--tint); color: var(--accent);
}
.notice-icon .icon { width: 28px; height: 28px; }
.notice h1 { margin: 8px 0 12px; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
.notice .lede { margin: 0 auto; }
.notice-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.steps-card { max-width: 480px; margin: 32px auto 0; padding: 24px; text-align: left; border: 1px solid var(--line); border-radius: var(--r-lg); }

/* ------------------------------------------------------------ footer --- */
.site-footer { background: var(--soft); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding-top: 48px; padding-bottom: 32px; }
.footer-grid h3 { margin-bottom: 12px; font-size: 14px; font-weight: 700; }
.footer-grid p { max-width: 380px; font-size: 14px; line-height: 1.6; }
.footer-grid a { display: block; padding: 5px 0; font-size: 14px; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px 0 36px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}

/* ------------------------------------------------------------- toast --- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 100;
  transform: translate(-50%, 16px); opacity: 0;
  padding: 12px 18px; border-radius: 10px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  transition: opacity .2s ease, transform .2s ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ================================================== tablet ≤ 949px === */
@media (max-width: 949px) {
  .lp-body { grid-template-columns: minmax(0, 1fr); }
  .lp-side { display: none; }
  .bottom-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    display: flex; align-items: center; gap: 10px;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background: #fff; border-top: 1px solid var(--line);
  }
  .bb-price { flex: 1; min-width: 0; font-size: 15px; line-height: 1.3; }
  .bb-price b { font-size: 17px; }
  .bb-price span { display: block; font-size: 13px; color: var(--ink-2); }
  .bottom-bar .btn { height: 48px; padding: 0 20px; }
  .page-listing { padding-bottom: 84px; }
  .page-listing .toast { bottom: 100px; }

  /* the price box is hidden here, so its promise shows in the page instead */
  .phone-only { display: block; margin-top: 20px; }
  /* "Find a property" goes first: the logo already leads home, and the Call
     and WhatsApp pills need the room */
  .nav-hide-sm { display: none; }

  .owner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "pitch" "form" "more";
    grid-template-rows: auto;
    gap: 28px; padding-top: 36px; padding-bottom: 56px;
  }
  .owner-points { margin-top: 8px; }
  .form-card { position: static; }
}

/* =================================================== phone ≤ 743px === */
@media (max-width: 743px) {
  .header-inner { height: 64px; gap: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 34px; font-size: 13px; }
  /* the name stacks on two short lines to make room for Call and WhatsApp */
  .brand-name { display: flex; flex-direction: column; font-size: 16px; line-height: 1.05; }
  .bn-2 { font-size: 13px; font-weight: 700; letter-spacing: 0; }
  .lbl-long { display: none; }
  .lbl-short { display: inline; }
  .nav { gap: 2px; }
  .nav-link { padding: 0 10px; font-size: 13px; }
  .head-btn { width: 40px; height: 40px; padding: 0; }
  .head-call { margin-left: 2px; }
  .head-lbl { display: none; }
  .pswp__thumb { width: 54px; height: 40px; }

  .intro { padding-top: 20px; }
  .intro h1 { font-size: 24px; }
  .intro-types, .trust { font-size: 14px; }
  .trust { gap: 6px 18px; }

  /* chips scroll sideways on a phone; panels become bottom sheets */
  .filterbar-inner { gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .chips {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin-left: calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: 4px;
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip { height: 38px; padding: 0 14px; }
  .dd-sort .sort-label { display: none; }
  .dd-sort > .chip { padding: 0 12px; }
  .dd[open] > summary::before { background: rgba(0, 0, 0, .45); }
  .dd-panel {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    width: auto; max-height: 82vh;
    padding: 6px 16px calc(16px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    animation: sheet-up .22s ease-out;
  }
  .dd-panel::before {
    content: ""; display: block; width: 36px; height: 4px; margin: 6px auto 4px;
    border-radius: 2px; background: var(--line);
  }
  .dd-head { padding: 8px 4px 8px; font-size: 17px; }
  .dd-close { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--soft); }
  .dd-opt { min-height: 52px; font-size: 16px; }

  .grid { gap: 32px; }
  .how { padding-top: 40px; }
  .how-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }

  /* listing page: photo first, full width; the title sits on a rounded
     white sheet that overlaps it — Airbnb's phone layout */
  .lp-top { display: flex; flex-direction: column; }
  .crumbs { display: none; }
  .gallery-wrap, .gallery-empty { order: -1; margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter)); }
  .gallery {
    display: flex; gap: 0; height: auto; aspect-ratio: 4 / 3; border-radius: 0;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .g { display: block !important; flex: 0 0 100%; scroll-snap-align: start; cursor: pointer; }
  .g:hover img { filter: none; }
  .show-all { display: none; }
  .gallery-count {
    display: block; position: absolute; right: 12px; bottom: 32px; z-index: 2;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(34, 34, 34, .72); color: #fff; font-size: 12px; font-weight: 600;
  }
  .gallery-empty { border-radius: 0; min-height: 260px; padding-bottom: 48px; }
  .lp-head {
    position: relative; z-index: 1; margin: -20px calc(-1 * var(--gutter)) 0;
    flex-direction: column; align-items: center; gap: 6px;
    padding: 24px var(--gutter) 8px; text-align: center;
    background: #fff; border-radius: 20px 20px 0 0;
  }
  .lp-head h1 { font-size: 24px; line-height: 28px; }
  .lp-summary { text-align: center; }
  .lp-main > section { padding: 26px 0; }
  .features { grid-template-columns: minmax(0, 1fr); }
  .more { padding-top: 36px; }

  .owner-pitch h1 { font-size: 34px; }
  .lede { font-size: 16px; }
  .form-card { padding: 22px; }

  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}

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