@charset "UTF-8";
/*
 * Каталог, карточка объекта и формы захвата.
 *
 * Токены объявлены в site.scss (:root) — здесь только цвета из палитры брендбука,
 * никаких собственных значений. Собирается File Watcher'ом: sass catalog.scss:catalog.css
 */
/* ---------------------------------------------------------------- фильтр */
.filter-block {
  padding: 20px 20px 4px;
  margin: 0 0 28px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius); }

.catalog-filter-actions {
  margin: 4px 0 16px; }
  .catalog-filter-actions .btn-link {
    margin-left: 8px; }

.catalog-intro {
  max-width: 68ch;
  color: var(--muted); }

/* --------------------------------------------------------------- листинг */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted); }

.catalog-count b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  font-variant-numeric: tabular-nums; }

.catalog-sort a {
  margin-left: 14px;
  font-weight: 600; }

.catalog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 40px; }

.catalog-item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s ease, box-shadow .25s ease; }

.catalog-item:hover,
.catalog-item:focus-within {
  border-color: var(--blue);
  box-shadow: var(--shadow); }

.catalog-item-image {
  position: relative;
  display: block;
  background: var(--ground);
  aspect-ratio: 3 / 2; }
  .catalog-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.catalog-item-nophoto {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted); }

.catalog-item-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px; }

.catalog-item-badge {
  padding: 4px 10px;
  font-family: var(--label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius); }

.catalog-item-badge-reserved {
  background: var(--navy); }

.catalog-item-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--muted);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease; }
  .catalog-item-favorite svg {
    width: 15px;
    height: 15px; }

.catalog-item-favorite:hover {
  color: var(--blue);
  border-color: var(--blue); }

.catalog-item-favorite.is-favorite {
  color: var(--blue);
  border-color: var(--blue); }

.catalog-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px; }
  .catalog-item-info h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.25; }
    .catalog-item-info h3 a {
      color: var(--navy);
      font-weight: 700;
      text-decoration: none; }
    .catalog-item-info h3 a:hover {
      color: var(--blue); }

.catalog-item-address,
.catalog-item-metro {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted); }

.catalog-item-params {
  margin: 12px 0 16px;
  font-family: var(--label);
  font-size: 13px;
  color: var(--ink);
  font-variant-numeric: tabular-nums; }

.catalog-item-params span:not(:last-child)::after {
  content: ' · ';
  color: var(--line); }

.catalog-item-price {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line); }
  .catalog-item-price b {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
    color: var(--navy);
    font-variant-numeric: tabular-nums; }
  .catalog-item-price small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
    font-variant-numeric: tabular-nums; }

.metro-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  vertical-align: baseline;
  border-radius: 50%; }

.catalog-empty {
  padding: 40px 0;
  max-width: 60ch;
  color: var(--muted); }

/* --------------------------------------------------------- карточка объекта */
.entity-address {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--ink); }

.entity-metro {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted); }

.entity-gallery,
.entity-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 24px 0 36px; }
  .entity-gallery img,
  .entity-plans img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius); }

.entity-params,
.entity-economics {
  max-width: 720px; }
  .entity-params th,
  .entity-economics th {
    width: 45%;
    font-family: var(--body);
    font-weight: 400;
    color: var(--muted); }
  .entity-params td,
  .entity-economics td {
    font-weight: 500;
    color: var(--navy);
    font-variant-numeric: tabular-nums; }

.entity-description {
  max-width: 68ch; }

.entity-advantages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .entity-advantages li {
    position: relative;
    padding-left: 20px;
    max-width: 68ch; }
  .entity-advantages li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 1px;
    background: var(--blue); }

.entity-documents {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px; }

.entity-broker {
  display: flow-root;
  padding: 28px;
  margin: 40px 0;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius); }
  .entity-broker h2 {
    margin: 0 0 20px;
    font-family: var(--label);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent-on-surface); }

.entity-broker-photo {
  float: left;
  width: 120px;
  margin-right: 24px; }
  .entity-broker-photo img {
    width: 100%;
    border-radius: 50%; }

.entity-broker-name b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy); }

.entity-broker-position {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted); }

.entity-broker-info p {
  margin: 0 0 6px; }

.entity-broker-messengers a:not(:last-child) {
  margin-right: 14px; }

/* ------------------------------------------------------------ формы лидов */
.entity-request-form,
.catalog-selection-form {
  max-width: 720px;
  padding: 28px;
  margin: 40px 0;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius); }
  .entity-request-form h3,
  .catalog-selection-form h3 {
    margin: 0 0 20px;
    font-size: 22px; }

/*# sourceMappingURL=catalog.css.map */
