:root {
  --dp-primary: #b58f6e;
  --dp-primary-dark: #9a785c;
  --dp-primary-soft: rgba(181, 143, 110, 0.1);
  --dp-secondary: #415151;
  --dp-secondary-soft: #f8f7f5;
  --dp-bg: #f8f9fa;
  --dp-surface: #ffffff;
  --dp-text: #0f172a;
  --dp-muted: #64748b;
  --dp-border: #e2e8f0;
  --dp-border-soft: #f1f5f9;
  --dp-success: #22c55e;
  --dp-danger: #ef4444;
  --dp-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --dp-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --dp-shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.dispo-public {
  margin: 0;
  min-width: 320px;
  background: var(--dp-bg);
  color: var(--dp-text);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

img,
svg {
  display: block;
}

button,
select,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.public-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.public-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--dp-border);
  backdrop-filter: blur(12px);
}

.public-site-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.public-brand__image {
  display: block;
  width: 216px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.public-brand--footer {
  font-size: 2rem;
}

.public-site-nav,
.public-footer__nav,
.public-footer__legal {
  display: flex;
  align-items: center;
  gap: 32px;
}

.public-site-nav a,
.public-footer__nav a,
.public-footer__legal a {
  color: #1e2626;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.public-site-nav a:hover,
.public-footer__nav a:hover,
.public-footer__legal a:hover {
  color: var(--dp-primary);
}

.public-site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.public-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.public-button:hover {
  transform: translateY(-1px);
}

.public-button svg,
.public-footer__phone svg {
  width: 18px;
  height: 18px;
}

.public-button--ghost {
  border-color: var(--dp-primary);
  color: var(--dp-primary);
}

.public-button--ghost:hover {
  background: var(--dp-primary);
  color: #fff;
}

.public-button--solid,
.public-button--hero {
  background: var(--dp-primary);
  color: #fff;
}

.public-button--solid:hover,
.public-button--hero:hover {
  background: var(--dp-primary-dark);
}

.public-button--secondary {
  background: var(--dp-secondary);
  color: #fff;
}

.public-button--secondary:hover {
  background: #344241;
}

.public-button--cta {
  min-height: 56px;
  padding: 0 32px;
  font-size: 1rem;
}

.public-button--hero {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: var(--dp-shadow-sm);
}

.public-button.is-disabled,
.public-button[aria-disabled="true"] {
  pointer-events: none;
  background: #94a3b8;
  color: #e2e8f0;
}

.public-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--dp-primary);
  color: #fff;
}

.public-menu-button svg {
  width: 22px;
  height: 22px;
}

.public-mobile-menu {
  display: none;
}

.public-mobile-menu[hidden] {
  display: none;
}

.public-mobile-menu__inner {
  padding: 12px 0 16px;
}

.public-mobile-menu__nav,
.public-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.public-mobile-menu__actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--dp-border);
}

.public-mobile-menu__link,
.public-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.public-mobile-menu__link {
  color: #1e2626;
}

.public-mobile-menu__link:hover {
  background: var(--dp-secondary-soft);
  color: var(--dp-primary);
}

.public-mobile-menu__cta {
  justify-content: center;
}

.public-mobile-menu__cta--ghost {
  border: 1px solid var(--dp-primary);
  color: var(--dp-primary);
}

.public-mobile-menu__cta--solid {
  background: var(--dp-primary);
  color: #fff;
}

.public-hero {
  background: var(--dp-secondary);
  color: #fff;
}

.public-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 0;
}

.property-detail-hero__topbar {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.public-button--hero-back {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border-color: rgba(226, 232, 240, 0.42);
  background: rgba(15, 23, 42, 0.2);
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
}

.public-button--hero-back svg {
  width: 16px;
  height: 16px;
}

.public-button--hero-back:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.public-hero h1 {
  margin: 0;
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 2.625rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.public-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #cbd5e1;
  font-size: 0.875rem;
}

.public-breadcrumbs a {
  transition: color 180ms ease;
}

.public-breadcrumbs a:hover {
  color: #fff;
}

.property-detail-hero__location {
  margin: 24px 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 1.125rem;
  font-weight: 500;
}

.property-detail-hero__location svg {
  width: 20px;
  height: 20px;
  color: var(--dp-primary);
}

.property-list-page,
.property-detail-page {
  padding: 50px 0 80px;
}

.property-list-filters,
.property-detail-description-card,
.property-detail-contact-card,
.property-detail-accordion,
.property-detail-description {
  background: var(--dp-surface);
  border-radius: 24px;
}

.property-list-filters {
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid var(--dp-border);
  box-shadow: var(--dp-shadow-sm);
}

.property-list-filters__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.filter-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-control > span:first-child,
.property-list-filters__slider-header > span,
.property-list-filters__price-field > span {
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-control__select-wrap {
  position: relative;
}

.filter-control__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.filter-control select {
  width: 100%;
  appearance: none;
  border: 1px solid var(--dp-border);
  background: #f8fafc;
  color: #334155;
  min-height: 44px;
  padding: 0 40px 0 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  cursor: pointer;
}

.filter-control select:hover {
  background: #fff;
}

.filter-control select:focus {
  outline: 0;
  border-color: var(--dp-primary);
  box-shadow: 0 0 0 3px rgba(181, 143, 110, 0.18);
}

.property-list-filters__advanced {
  margin-top: 24px;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 20px;
  align-items: flex-start;
}

.property-list-filters__advanced > .property-list-filters__slider,
.property-list-filters__advanced > .property-list-filters__search {
  flex: 1 1 50%;
  min-width: 0;
}

.property-list-filters__advanced--single > .property-list-filters__slider {
  flex: 1 1 100%;
}

.property-list-filters__slider,
.property-list-filters__search {
  padding: 16px;
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: var(--dp-shadow-sm);
}

.property-list-filters__search-label {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-list-filters__search-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-list-filters__search-controls input {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  padding: 0 12px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.property-list-filters__search-controls input:hover {
  background: #fff;
}

.property-list-filters__search-controls input:focus {
  outline: 0;
  border-color: var(--dp-primary);
  box-shadow: 0 0 0 3px rgba(181, 143, 110, 0.18);
}

.property-list-filters__search-submit {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.property-list-filters__chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.property-list-filters__chip {
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  color: #475569;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.property-list-filters__chip:hover {
  border-color: #cbd5e1;
  background: #fff;
  color: #334155;
}

.property-list-filters__chip:focus-visible {
  outline: 0;
  border-color: var(--dp-primary);
  box-shadow: 0 0 0 3px rgba(181, 143, 110, 0.18);
}

.property-list-filters__slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.property-list-filters__slider-header strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--dp-primary-soft);
  color: var(--dp-primary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.property-list-filters__price-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.property-list-filters__price-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.property-list-filters__price-field input {
  width: 100%;
  border: 1px solid var(--dp-border);
  background: #f8fafc;
  color: #334155;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.property-list-filters__price-field input:focus {
  outline: 0;
  border-color: var(--dp-primary);
  box-shadow: 0 0 0 3px rgba(181, 143, 110, 0.18);
}

.property-list-filters__price-field input:disabled {
  cursor: not-allowed;
  color: #94a3b8;
  background: #f1f5f9;
}

.property-list-filters__range-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 6px;
}

.property-list-filters__range-track,
.property-list-filters__range-track-active {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
}

.property-list-filters__range-track {
  background: #e2e8f0;
}

.property-list-filters__range-track-active {
  background: var(--dp-primary);
  right: auto;
  width: 0;
  z-index: 1;
}

.property-list-filters__range-wrap input[type="range"] {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  appearance: none;
  background: transparent;
  outline: 0;
  pointer-events: none;
  z-index: 2;
}

.property-list-filters__range-wrap input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
}

.property-list-filters__range-wrap input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--dp-primary);
  border: 0;
  box-shadow: 0 0 0 4px rgba(181, 143, 110, 0.2);
  cursor: pointer;
  pointer-events: auto;
}

.property-list-filters__range-wrap input[type="range"]::-moz-range-track {
  height: 8px;
  border: 0;
  background: transparent;
}

.property-list-filters__range-wrap input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dp-primary);
  border: 0;
  box-shadow: 0 0 0 4px rgba(181, 143, 110, 0.2);
  cursor: pointer;
  pointer-events: auto;
}

.property-list-filters__range-wrap.is-disabled {
  opacity: 0.5;
}

.property-list-filters__range-wrap.is-disabled input[type="range"]::-webkit-slider-thumb,
.property-list-filters__range-wrap.is-disabled input[type="range"]::-moz-range-thumb {
  cursor: not-allowed;
  box-shadow: none;
}

.property-list-filters__range-empty {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.8125rem;
}

.property-list-filters__noscript {
  margin-top: 16px;
}

.property-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.property-list-summary {
  margin: 24px 0 16px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}

.property-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--dp-shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.property-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--dp-shadow-lg);
}

.property-card__image {
  position: relative;
  display: block;
  height: 224px;
  overflow: hidden;
  background: #cbd5e1;
}

.property-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  pointer-events: none;
}

.property-card__image img,
.property-card__placeholder {
  width: 100%;
  height: 100%;
}

.property-card__image img {
  object-fit: cover;
  transition: transform 350ms ease;
}

.property-card:hover .property-card__image img {
  transform: scale(1.05);
}

.property-card__placeholder {
  display: grid;
  place-items: center;
  color: #475569;
  font-weight: 600;
}

.property-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-badge--available {
  background: var(--dp-success);
}

.property-badge--sold {
  background: var(--dp-danger);
}

.property-card__image-price {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.property-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.property-card__title {
  color: var(--dp-secondary);
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 180ms ease;
}

.property-card:hover .property-card__title {
  color: var(--dp-primary);
}

.property-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dp-border-soft);
}

.property-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
}

.property-card__meta svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

.property-card__meta-suffix {
  display: inline;
}

.property-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.property-card__footer-price {
  color: var(--dp-secondary);
  font-size: 1.25rem;
  font-weight: 700;
}

.property-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--dp-primary-soft);
  color: var(--dp-primary);
  transition: background-color 180ms ease, color 180ms ease;
}

.property-card:hover .property-card__arrow {
  background: var(--dp-primary);
  color: #fff;
}

.property-card__arrow svg {
  width: 18px;
  height: 18px;
}

.property-empty-state {
  grid-column: 1 / -1;
  padding: 56px 24px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.property-empty-state h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.property-empty-state p {
  margin: 0 0 18px;
  color: #64748b;
}

.property-empty-state a {
  color: var(--dp-primary);
  font-weight: 700;
}

.property-pagination-shell {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.property-pagination-shell__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--dp-border);
  background: #fff;
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
}

.property-pagination-shell__item.is-active {
  background: var(--dp-primary);
  border-color: var(--dp-primary);
  color: #fff;
}

.property-pagination-shell__item.is-disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.property-detail-description-card,
.property-detail-contact-card {
  padding: 28px 32px;
  background: var(--dp-secondary-soft);
}

.property-detail-description-card h2,
.property-detail-map h2 {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.property-detail-contact-card__deadline svg {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(181, 143, 110, 0.18), rgba(65, 81, 81, 0.08));
  color: var(--dp-primary);
  flex: 0 0 auto;
}

.property-detail-contact-card__deadline svg {
  width: 24px;
  height: 24px;
  color: var(--dp-primary);
}

.property-detail-description-card--desktop {
  display: block;
}

.property-detail-description-card--mobile {
  display: none;
  margin-bottom: 50px;
}

.property-detail-contact-card--desktop {
  display: block;
}

.property-detail-contact-card--mobile {
  display: none;
  margin-top: 32px;
}

.property-detail-layout {
  display: flex;
  gap: 48px;
}

.property-detail-main {
  width: 60%;
}

.property-detail-sidebar {
  width: 40%;
  flex-shrink: 0;
}

.property-detail-sidebar__sticky {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.property-detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.property-detail-price-row h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.property-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.property-detail-gallery__main {
  position: relative;
}

.property-detail-gallery__status {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--dp-shadow-sm);
}

.property-detail-gallery__main-image,
.property-detail-gallery__placeholder {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  background: #cbd5e1;
}

.property-detail-gallery__main-image {
  object-fit: cover;
}

.property-detail-gallery__placeholder {
  display: grid;
  place-items: center;
  color: #475569;
  font-weight: 600;
}

.property-detail-gallery__thumb-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.property-detail-gallery__thumbs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  flex: 1;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.property-detail-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.property-detail-gallery__thumb,
.property-detail-gallery__scroll {
  border: 0;
  background: transparent;
  padding: 0;
}

.property-detail-gallery__thumb {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0.72;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.property-detail-gallery__thumb.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--dp-primary);
}

.property-detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-detail-gallery__scroll {
  color: #94a3b8;
  cursor: pointer;
}

.property-detail-gallery__scroll svg {
  width: 24px;
  height: 24px;
}

.property-detail-gallery__scroll:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.property-detail-accordion {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--dp-secondary-soft);
}

.property-detail-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  color: var(--dp-text);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--dp-shadow-sm);
}

.property-detail-accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.property-detail-accordion__icon svg {
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

.property-detail-accordion.is-open .icon-plus {
  display: none;
}

.property-detail-accordion:not(.is-open) .icon-minus {
  display: none;
}

.property-detail-accordion__panel {
  margin-top: 24px;
}

.property-detail-key-info {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.property-detail-key-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.property-detail-key-info li.property-detail-key-info__item--full-width {
  grid-column: 1 / -1;
  align-items: flex-start;
  justify-content: flex-start;
}

.property-detail-key-info li.property-detail-key-info__item--full-width strong {
  text-align: left;
}

.property-detail-key-info span {
  color: #64748b;
  font-weight: 500;
}

.property-detail-key-info strong {
  text-align: right;
}

.property-detail-key-info--investment {
  margin-bottom: 20px;
}

.property-detail-investment-note {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.property-detail-description {
  padding: 24px;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--dp-shadow-sm);
}

.property-detail-description p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  white-space: pre-line;
}

.property-detail-contact-card__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.property-detail-contact-card__actions > * {
  flex: 1;
}

.property-detail-contact-card__phone {
  min-height: 52px;
}

.property-detail-contact-card__deadline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: #334155;
  font-weight: 500;
}

.property-detail-contact-card__deadline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.property-detail-resource-links {
  padding: 28px 32px;
  background: var(--dp-secondary-soft);
  border-radius: 24px;
}

.property-detail-resource-links h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 700;
}

.property-detail-resource-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.property-detail-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.property-detail-resource-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--dp-shadow-md);
}

.property-detail-resource-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.property-detail-resource-link__icon svg {
  width: 20px;
  height: 20px;
}

.property-detail-resource-link--street-view {
  background: #415151;
}

.property-detail-resource-link--street-view:hover {
  background: #32403f;
}

.property-detail-resource-link--zillow {
  background: #1f4f9a;
}

.property-detail-resource-link--zillow:hover {
  background: #183f7c;
}

.property-detail-resource-link--google-drive {
  background: #b58f6e;
}

.property-detail-resource-link--google-drive:hover {
  background: #9a785c;
}

.property-detail-resource-links__note {
  display: inline-block;
  margin: 12px 0 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.5;
}

.property-detail-resource-links--mobile {
  display: none;
  margin-bottom: 24px;
}

.property-detail-comps {
  margin-top: 0;
}

.property-detail-comps h2 {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.property-detail-comps__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.property-detail-comp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--dp-shadow-sm);
}

.property-detail-comp-card__thumb {
  width: 100%;
  height: 177px;
  background: #e2e8f0;
}

.property-detail-comp-card__image,
.property-detail-comp-card__placeholder {
  width: 100%;
  height: 100%;
}

.property-detail-comp-card__image {
  object-fit: cover;
}

.property-detail-comp-card__placeholder {
  display: grid;
  place-items: center;
  color: #94a3b8;
}

.property-detail-comp-card__placeholder svg {
  width: 34px;
  height: 34px;
}

.property-detail-comp-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 14px 14px 16px;
}

.property-detail-comp-card__title {
  margin: 0;
  color: var(--dp-secondary);
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}

.property-detail-comp-card__meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  padding-top: 4px;
  border-top: 1px solid var(--dp-border-soft);
}

.property-detail-comp-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
}

.property-detail-comp-card__meta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #94a3b8;
}

.property-detail-comp-card__meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-detail-comps__empty {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

.property-detail-map {
  margin-top: 56px;
}

.property-detail-map__frame,
.property-detail-map__placeholder {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--dp-border);
  background: #e2e8f0;
  box-shadow: var(--dp-shadow-sm);
}

.property-detail-map__frame iframe {
  border: 0;
}

.property-detail-map__placeholder {
  display: grid;
  place-items: center;
  color: #475569;
  font-weight: 600;
}

.public-cta {
  overflow: hidden;
  background-color: #415150;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='400' viewBox='0 0 1200 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='rgba(255,255,255,0.05)' stroke-width='3' fill='none' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M-100 -50 L250 150 L250 500' /%3E%3Cpath d='M1300 -50 L950 150 L950 500' /%3E%3Cg transform='translate(300, 100) rotate(15)'%3E%3Cpath d='M0 60 L160 0 L100 160 L70 100 Z' stroke-width='8'/%3E%3Cpath d='M70 100 L160 0' stroke-width='8'/%3E%3C/g%3E%3Cg transform='translate(750, 100) rotate(-15)'%3E%3Cpath d='M160 60 L0 0 L60 160 L90 100 Z' stroke-width='8'/%3E%3Cpath d='M90 100 L0 0' stroke-width='8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.public-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 50px 0 80px;
}

.public-cta h2 {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 1.95rem);
  font-weight: 500;
  line-height: 1.15;
}

.public-footer {
  background: #fff;
  padding: 50px 0 32px;
}

.public-footer__top,
.public-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.public-footer__top {
  margin-bottom: 48px;
}

.public-footer__disclaimer {
  margin-bottom: 32px;
  padding: 22px 24px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--dp-border);
}

.public-footer__disclaimer p {
  margin: 0;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

.public-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dp-primary);
  font-size: 1rem;
  font-weight: 500;
}

.public-footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--dp-border);
}

.public-footer__bottom p {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}

.public-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.public-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dp-primary);
  color: #fff;
  transition: transform 180ms ease, background-color 180ms ease;
}

.public-footer__social-link:hover {
  transform: translateY(-1px);
  background: var(--dp-primary-dark);
}

.public-footer__social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ── Offer Modal ───────────────────────────────────────────── */

body.offer-modal-open {
  overflow: hidden;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.offer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.offer-modal[hidden] {
  display: none !important;
}

.offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  cursor: pointer;
}

.offer-modal__card {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  background: var(--dp-surface);
  border-radius: 24px;
  box-shadow: var(--dp-shadow-lg);
}

.offer-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.offer-modal__close:hover {
  background: #f1f5f9;
  color: var(--dp-text);
}

.offer-modal__close svg {
  width: 20px;
  height: 20px;
}

.offer-modal__title {
  margin: 0 0 28px;
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.offer-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.offer-modal__field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.offer-modal__field--half {
  margin-bottom: 0;
}

.offer-modal__field label,
.offer-modal__field legend {
  color: var(--dp-text);
  font-size: 0.875rem;
  font-weight: 600;
}

.offer-modal__required {
  color: var(--dp-danger);
}

.offer-modal__field input[type="text"],
.offer-modal__field input[type="tel"],
.offer-modal__field input[type="email"],
.offer-modal__field input[type="date"],
.offer-modal__field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--dp-border);
  border-radius: 14px;
  padding: 0 14px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.offer-modal__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

.offer-modal__field select::-ms-expand {
  display: none;
}

.offer-modal__field input:hover,
.offer-modal__field select:hover {
  background: #fff;
}

.offer-modal__field input:focus,
.offer-modal__field select:focus {
  outline: 0;
  border-color: var(--dp-primary);
  box-shadow: 0 0 0 3px rgba(181, 143, 110, 0.18);
  background: #fff;
}

.offer-modal__field select:disabled {
  color: #64748b;
  background: #f1f5f9;
  cursor: not-allowed;
}

.offer-modal__field--error input,
.offer-modal__field--error select {
  border-color: var(--dp-danger);
}

.offer-modal__pill-group {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}

.offer-modal__pill-group legend {
  margin-bottom: 10px;
}

.offer-modal__conditional {
  margin-top: 12px;
  margin-bottom: 0;
}

.offer-modal__conditional[hidden] {
  display: none !important;
}

.offer-modal__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-modal__pill {
  cursor: pointer;
}

.offer-modal__pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.offer-modal__pill span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--dp-border);
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.offer-modal__pill:hover span {
  border-color: var(--dp-primary);
  background: var(--dp-primary-soft);
  color: var(--dp-primary-dark);
}

.offer-modal__pill input:checked + span {
  background: var(--dp-primary);
  border-color: var(--dp-primary);
  color: #fff;
}

.offer-modal__disclaimer {
  margin: 24px 0;
  color: var(--dp-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.offer-modal__actions {
  margin-bottom: 0;
}

.offer-modal__submit {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.offer-modal__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.offer-modal__feedback {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.offer-modal__feedback--success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.offer-modal__feedback--error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 1199px) {
  .property-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-list-filters__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .public-site-nav,
  .public-site-header__actions .public-button {
    display: none;
  }

  .public-menu-button {
    display: inline-flex;
  }

  .public-mobile-menu {
    display: block;
    border-top: 1px solid var(--dp-border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--dp-shadow-sm);
  }

  .public-mobile-menu[hidden] {
    display: none;
  }

  .property-list-page,
  .property-detail-page {
    padding: 40px 0 64px;
  }

  .property-detail-description-card--mobile {
    display: block;
  }

  .property-detail-description-card--desktop {
    display: none;
  }

  .property-detail-contact-card--desktop {
    display: none;
  }

  .property-detail-contact-card--mobile {
    display: block;
  }

  .property-detail-resource-links--mobile {
    display: block;
  }

  .property-detail-layout {
    flex-direction: column;
    gap: 40px;
  }

  .property-detail-main,
  .property-detail-sidebar {
    width: 100%;
  }

  .property-detail-sidebar__sticky {
    position: static;
  }
}

@media (max-width: 767px) {
  .public-container {
    width: min(1280px, calc(100% - 24px));
  }

  .public-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .public-footer__top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 14px;
  }

  .public-footer__nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .public-footer__phone {
    order: 3;
    margin-left: 0;
    white-space: nowrap;
  }

  .public-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-footer__social {
    justify-content: flex-start;
  }

  .public-brand,
  .public-brand--footer {
    font-size: 1.6rem;
  }

  .public-brand__image {
    width: 184px;
    height: auto;
  }

  .public-hero__inner {
    padding: 50px 0;
  }

  .property-detail-hero__topbar {
    margin-bottom: 16px;
  }

  .property-detail-hero__location {
    font-size: 1rem;
  }

  .property-list-filters {
    padding: 20px;
  }

  .property-list-filters__advanced {
    flex-direction: column !important;
    gap: 12px;
  }

  .property-list-filters__advanced > .property-list-filters__slider,
  .property-list-filters__advanced > .property-list-filters__search {
    flex: 1 1 auto;
    width: 100%;
  }

  .property-list-filters__grid,
  .property-card-grid,
  .property-detail-key-info,
  .property-detail-resource-links__grid {
    grid-template-columns: 1fr;
  }

  .property-card__meta-suffix {
    display: none;
  }

  .property-detail-gallery__main-image,
  .property-detail-gallery__placeholder {
    height: 320px;
  }

  .property-detail-gallery__thumb {
    width: 132px;
    height: 132px;
  }

  .property-detail-gallery__thumb-row {
    gap: 10px;
  }

  .property-detail-accordion,
  .property-detail-description-card,
  .property-detail-contact-card,
  .property-detail-resource-links {
    padding: 24px;
  }

  .property-detail-contact-card__actions {
    flex-direction: column;
  }

  .property-detail-comps__row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .property-detail-comps__row::-webkit-scrollbar {
    display: none;
  }

  .property-detail-comp-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  .public-footer__legal {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .offer-modal__card {
    padding: 28px 20px;
    max-height: 95vh;
  }

  .offer-modal__field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offer-modal__pills {
    gap: 8px;
  }

  .offer-modal__pill span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.75rem;
  }
}
