@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* Staging deploy marker: mobile gallery interactions. */

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 0%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 0%;
  --primary: 97 57% 20%;
  --primary-foreground: 0 0% 100%;
  --secondary: 27 51% 28%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 40%;
  --accent: 97 20% 92%;
  --accent-foreground: 97 57% 20%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 93%;
  --ring: 97 57% 20%;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.social-icon,
.whatsapp-icon {
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-page,
.admin-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main,
.admin-main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-home {
  position: absolute;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.header-inner,
.admin-header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo img {
  width: 220px;
  max-width: min(220px, 72vw);
  max-height: 52px;
  object-fit: contain;
}

.site-nav,
.admin-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
  padding: 0 0 4px;
}

.site-header.is-home .site-nav a {
  color: rgba(255, 255, 255, 0.94);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: hsl(var(--primary));
  border-bottom-color: hsl(var(--primary));
}

.site-header.is-home .site-nav a:hover,
.site-header.is-home .site-nav a.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  color: hsl(var(--foreground));
  padding: 8px;
}

.site-header.is-home .mobile-menu summary {
  color: #fff;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  position: absolute;
  top: 72px;
  right: 16px;
  width: min(320px, calc(100vw - 32px));
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 0;
  text-align: center;
  background-image: url("/assets/brand/hero-home.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 896px);
  margin-inline: auto;
  padding-inline: 16px;
}

.hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

.hero p {
  max-width: 672px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-search {
  width: min(100%, 816px);
  margin-inline: auto;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-search select,
.hero-search input {
  min-height: 48px;
  border: 0;
  outline: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-search select {
  width: 184px;
  padding: 0 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  font-weight: 500;
}

.hero-search select option {
  color: hsl(var(--foreground));
}

.hero-input {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-input .icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-search input {
  width: 100%;
  padding: 0 16px 0 46px;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.hero-search button {
  min-height: 48px;
  padding-inline: 32px;
  border-radius: 8px;
  font-weight: 500;
}

.btn,
button,
input[type="submit"] {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
button:hover {
  background: hsl(97 57% 17%);
}

.btn:active,
button:active {
  transform: scale(0.98);
}

.btn-outline,
button.btn-outline {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

.btn-outline:hover,
button.btn-outline:hover {
  background: hsl(var(--muted));
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.property-card .btn-whatsapp {
  min-height: 46px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #20ba56;
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--muted-foreground));
  border-color: transparent;
}

.btn-ghost:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.section {
  padding: 64px 0;
}

.subpage-hero {
  padding: 92px 0 94px;
  background: hsl(var(--primary));
  color: #fff;
  text-align: center;
}

.subpage-hero h1 {
  margin: 0 0 18px;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.subpage-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

.section-muted {
  background: hsl(var(--muted) / 0.1);
}

.section-trust {
  padding: 64px 0;
  background: hsl(var(--muted) / 0.3);
  border-block: 1px solid hsl(var(--border));
}

.section-trust .container {
  max-width: 1100px;
}

.section-trust .section-heading {
  margin-bottom: 40px;
}

.section-trust .section-heading p {
  max-width: 672px;
  margin: 12px auto 0;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.section-heading h2,
.page-title {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}

.page-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.section-heading p,
.lead {
  margin: 8px 0 0;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid-properties {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-trust {
  width: 100%;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-layout {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.import-layout {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.category-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.category-card strong {
  font-size: 14px;
  font-weight: 600;
}

.category-icon.secondary {
  background: hsl(var(--secondary) / 0.1);
  color: hsl(var(--secondary));
}

.category-icon.red {
  background: hsl(var(--destructive) / 0.1);
  color: hsl(var(--destructive));
}

.category-icon.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.home-seo-section {
  background: hsl(var(--background));
}

.home-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.home-seo-copy:first-child {
  grid-row: span 2;
}

.home-seo-copy h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.home-seo-copy p,
.home-survey-list {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.72;
}

.home-seo-copy p + p {
  margin-top: 12px;
}

.home-need-links {
  margin-top: 34px;
}

.home-need-links h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.home-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.home-area-pills a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--muted) / 0.35);
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 800;
}

.home-need-pills {
  margin-top: 0;
}

.home-need-pills a {
  border-color: hsl(var(--primary) / 0.16);
  background: hsl(var(--primary) / 0.07);
  color: hsl(var(--primary));
}

.home-need-pills a:hover {
  border-color: hsl(var(--primary) / 0.34);
  background: hsl(var(--primary) / 0.11);
}

.home-survey-list {
  margin: 0;
  padding-left: 20px;
}

.home-survey-list li + li {
  margin-top: 8px;
}

.category-icon.amber {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.category-icon.purple {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.trust-card {
  max-width: 420px;
  margin-inline: auto;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
}

.trust-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.trust-card p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.6;
}

.trust-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.property-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.property-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: hsl(var(--muted));
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.badge-stack {
  display: grid;
  gap: 8px;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 6px;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.badge-danger {
  background: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
  text-transform: uppercase;
}

.badge-featured {
  margin-left: auto;
  background: #fbbf24;
  color: #451a03;
}

.badge-status {
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid #bbf7d0;
  background: #dcfce7;
  color: #166534;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.property-card .badge-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 2px 8px 3px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.status-booking {
  border-color: #fde68a;
  background: #fef3c7;
  color: #92400e;
}

.status-terjual,
.status-tersewa {
  border-color: #fecaca;
  background: #fee2e2;
  color: #991b1b;
}

.status-arsip {
  border-color: #e5e7eb;
  background: #f3f4f6;
  color: #374151;
}

.property-body {
  padding: 14px 16px 8px;
  flex: 1;
}

.property-promo-label {
  max-width: 100%;
  width: fit-content;
  display: block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 6px;
  background: #c2410c;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(154, 52, 18, 0.18);
}

.property-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-footer {
  padding: 0 16px 16px;
}

.property-price,
.property-price-row {
  margin: 0 0 12px;
  color: hsl(var(--primary));
  font-size: 20px;
  font-weight: 700;
}

.property-price-block {
  margin-bottom: 12px;
}

.property-price-row {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.property-price-main {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-price-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.property-price-period {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.property-price-block small,
.property-detail-price-block small {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  line-height: 1.2;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 10px 0;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}

.filter {
  display: flex;
  gap: 10px;
  margin: 24px 0 28px;
}

.filter input,
.filter select,
input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  outline-color: hsl(var(--ring));
}

.category-filter {
  width: min(100%, 760px);
}

.filter-input {
  position: relative;
  flex: 1;
}

.filter-input .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
}

.filter-input input {
  padding-left: 42px;
}

.listing-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(130px, 1fr));
  align-items: end;
  padding: 14px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.listing-filter select:first-child {
  min-width: 150px;
}

.listing-filter-search {
  min-width: 220px;
  grid-column: span 2;
}

.listing-filter-toggle {
  display: none;
}

.listing-filter-advanced {
  display: contents;
}

.listing-filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.listing-filter-actions .btn,
.listing-filter-actions button {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.listing-meta-row {
  margin: -8px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.listing-meta-row p {
  margin: 0;
}

.listing-meta-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: hsl(var(--primary));
  font-weight: 700;
}

.breadcrumbs {
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: hsl(var(--muted-foreground));
}

.breadcrumbs a:hover {
  color: hsl(var(--primary));
}

.breadcrumb-separator {
  color: hsl(var(--border));
}

.pagination {
  margin: 32px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.pagination a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.listing-area-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid hsl(var(--border));
}

.listing-area-links h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.listing-area-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-area-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 700;
}

.home-featured-pagination {
  margin-top: 28px;
}

.listing-seo-block {
  margin-top: 56px;
  display: grid;
  gap: 28px;
}

.listing-seo-copy,
.listing-price-links,
.listing-faq {
  padding: 28px;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}

.listing-seo-copy h2,
.listing-price-links h2,
.listing-faq h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

.listing-seo-copy p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.72;
}

.listing-seo-copy p + p {
  margin-top: 14px;
}

.listing-price-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-price-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 800;
}

.listing-faq {
  display: grid;
  gap: 12px;
}

.listing-faq details {
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--background));
}

.listing-faq summary {
  min-height: 48px;
  padding: 14px 16px;
  cursor: pointer;
  color: hsl(var(--foreground));
  font-weight: 800;
}

.listing-faq details p {
  padding: 0 16px 16px;
  color: hsl(var(--muted-foreground));
  line-height: 1.62;
}

.not-found-search {
  width: min(100%, 720px);
  margin: 28px 0 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  border-top: 1px solid hsl(var(--border));
}

.footer-grid {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 32px;
}

.footer-logo {
  width: 220px;
  max-height: 52px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-title {
  display: block;
  margin-bottom: 14px;
  color: hsl(var(--foreground));
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social,
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.contact-social-list a:hover {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  transform: translateY(-1px);
}

.social-list a,
.social-list span {
  padding: 7px 10px;
  border-radius: 8px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  font-weight: 700;
}

.copyright {
  padding: 22px 0;
  border-top: 1px solid hsl(var(--border));
  font-size: 14px;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa:hover {
  background: #20ba56;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}

.floating-wa .whatsapp-icon {
  width: 28px;
  height: 28px;
}

.admin-shell {
  background: hsl(var(--muted) / 0.3);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}

.admin-header-inner {
  min-height: 64px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
}

.admin-brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.admin-nav {
  gap: 4px;
}

.admin-nav a,
.admin-nav button,
.admin-menu summary {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  font-weight: 700;
}

.admin-nav a:hover,
.admin-nav a.is-active,
.admin-nav button:hover,
.admin-menu summary:hover,
.admin-menu summary.is-active,
.admin-menu[open] summary {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.admin-menu {
  position: relative;
}

.admin-menu summary {
  list-style: none;
  cursor: pointer;
}

.admin-menu summary::-webkit-details-marker {
  display: none;
}

.admin-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-lg);
}

.admin-menu-panel a,
.admin-menu-panel button {
  width: 100%;
  justify-content: flex-start;
}

.admin-menu-panel form {
  margin: 0;
}

.admin-main {
  padding: 32px 0;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid hsl(var(--border));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  padding: 16px;
  border-radius: 14px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}

.stat-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1.1;
}

.stat-green {
  border-color: #bbf7d0;
  background: rgba(240, 253, 244, 0.8);
  color: #14532d;
}

.stat-yellow {
  border-color: #fde68a;
  background: rgba(254, 252, 232, 0.8);
  color: #713f12;
}

.stat-red {
  border-color: #fecaca;
  background: rgba(254, 242, 242, 0.8);
  color: #7f1d1d;
}

.stat-orange {
  border-color: #fed7aa;
  background: rgba(255, 247, 237, 0.8);
  color: #7c2d12;
}

.admin-toolbar {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-toolbar .filter {
  margin: 0;
}

.admin-import-form {
  display: grid;
  gap: 10px;
  margin: 18px 0 12px;
}

.admin-blog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.9fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding: 22px;
}

.admin-blog-tools h2 {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-blog-tools .lead {
  margin: 0;
  font-size: 14px;
}

.admin-blog-tools .admin-import-form {
  margin: 0;
}

.admin-blog-tool-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-maintenance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-maintenance-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.admin-maintenance-card h2 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.admin-maintenance-card .lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.table-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  overflow-x: auto;
}

.leads-top-card {
  margin-bottom: 24px;
}

.admin-section-header {
  padding: 18px 20px;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.25);
}

.admin-section-header h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.admin-section-header p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.leads-toolbar {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid hsl(var(--border));
  align-items: flex-start;
}

.leads-toolbar .filter {
  flex: 1 1 auto;
  justify-content: flex-start;
}

.leads-toolbar input[type="date"] {
  min-width: 145px;
}

.lead-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 6px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.lead-badge-green {
  background: rgba(34, 197, 94, 0.14);
  color: #128c7e;
}

.lead-badge-blue {
  background: rgba(59, 130, 246, 0.14);
  color: #1e40af;
}

.lead-badge-purple {
  background: rgba(147, 51, 234, 0.14);
  color: #6b21a8;
}

.inline-view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  color: hsl(var(--primary));
  font-size: 12px;
  font-weight: 700;
}

.inline-view-link .icon {
  width: 13px;
  height: 13px;
}

.lead-source,
.lead-message {
  display: block;
  margin-top: 4px;
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  line-height: 1.35;
}

.lead-message {
  max-width: 760px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid hsl(var(--border));
  text-align: left;
  vertical-align: middle;
}

th {
  background: hsl(var(--muted) / 0.5);
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  font-weight: 800;
}

td {
  font-size: 14px;
}

.actions-cell {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.actions-cell form {
  margin: 0;
}

.icon-btn {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.icon-btn.danger {
  color: hsl(var(--destructive));
}

.login-box {
  width: min(420px, calc(100% - 32px));
  margin: 56px auto;
  padding: 28px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.notice {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.notice p {
  margin: 0;
}

.notice p + p {
  margin-top: 6px;
}

.notice-success {
  background: rgba(240, 253, 244, 0.88);
  border-color: #bbf7d0;
  color: #14532d;
}

.notice-error {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

.admin-form-heading {
  align-items: flex-start;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  font-weight: 700;
}

.admin-form-shell {
  display: grid;
  gap: 18px;
}

.form-section {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.form-section-title {
  margin-bottom: 18px;
}

.form-section-title h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: 20px;
  line-height: 1.25;
}

.form-section-title p {
  margin: 6px 0 0;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.tracking-status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: -2px 0 18px;
}

.tracking-status-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--muted) / 0.26);
}

.tracking-status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.tracking-status-item.is-configured .tracking-status-dot {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.14);
}

.tracking-status-item strong,
.tracking-status-item small {
  display: block;
}

.tracking-status-item strong {
  color: hsl(var(--foreground));
  font-size: 13px;
  line-height: 1.2;
}

.tracking-status-item small {
  margin-top: 3px;
  color: hsl(var(--muted-foreground));
  font-size: 11px;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.single-column-grid {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span:first-child {
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 800;
}

.field small {
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  line-height: 1.45;
}

.field-full {
  grid-column: 1 / -1;
}

.field textarea {
  resize: vertical;
}

.checkbox-field {
  align-content: end;
}

.checkbox-row {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--background));
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
}

.upload-drop {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 24px;
  border: 1px dashed hsl(var(--border));
  border-radius: 14px;
  background: hsl(var(--muted) / 0.28);
  color: hsl(var(--muted-foreground));
  text-align: center;
  cursor: pointer;
}

.upload-drop .icon {
  width: 30px;
  height: 30px;
  color: hsl(var(--primary));
}

.upload-drop span {
  color: hsl(var(--foreground));
  font-size: 16px;
  font-weight: 800;
}

.upload-drop small {
  font-size: 13px;
}

.upload-drop input {
  max-width: 360px;
  min-height: auto;
  padding: 8px;
  background: hsl(var(--card));
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.sticky-actions {
  position: sticky;
  bottom: 12px;
  z-index: 8;
  padding: 12px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--card) / 0.94);
  box-shadow: var(--shadow-sm);
}

.existing-images {
  margin-top: 18px;
}

.image-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.single-image-grid {
  grid-template-columns: minmax(0, 360px);
  margin-bottom: 16px;
}

.image-admin-card {
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--background));
}

.image-admin-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: hsl(var(--muted));
}

.image-admin-card > div {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.image-admin-card strong {
  overflow: hidden;
  color: hsl(var(--foreground));
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-admin-card form {
  margin: 0;
}

.danger-action {
  width: 100%;
  color: hsl(var(--destructive));
}

.empty-state {
  margin: 0;
  padding: 28px;
  border: 1px dashed hsl(var(--border));
  border-radius: 12px;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.account-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.account-summary {
  display: grid;
  gap: 12px;
}

.account-summary div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  background: hsl(var(--background));
}

.account-summary span {
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  font-weight: 800;
}

.account-summary strong {
  color: hsl(var(--foreground));
  font-size: 14px;
  overflow-wrap: anywhere;
}

.blog-content {
  max-width: 820px;
  margin-top: 28px;
  color: hsl(var(--foreground));
  font-size: 17px;
  line-height: 1.85;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: hsl(var(--muted));
}

.blog-hero-image {
  width: min(100%, 920px);
  margin-top: 28px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}

.blog-content p {
  color: hsl(var(--muted-foreground));
}

.blog-content h2 {
  margin: 36px 0 14px;
  font-size: 28px;
  line-height: 1.3;
}

.blog-content h3 {
  margin: 24px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.blog-content ul,
.blog-content ol {
  margin: 18px 0 26px 24px;
  color: hsl(var(--muted-foreground));
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content a {
  color: hsl(var(--primary));
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  padding: 22px;
}

.contact-card h2 {
  margin: 12px 0;
  font-size: 20px;
}

.contact-card p {
  color: hsl(var(--muted-foreground));
}

.home-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: var(--shadow-sm);
}

.home-whatsapp:hover {
  background: #20ba56;
  color: #fff;
}

.listing-page {
  padding-top: 48px;
}

.listing-page.is-category-page .page-title {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.listing-page.is-category-page .lead {
  margin-top: 8px;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
}

.listing-page.is-category-page .grid-properties {
  margin-top: 36px;
}

.listing-skeleton {
  min-height: 379px;
  border-radius: 12px;
  background: hsl(var(--muted) / 0.5);
}

.listing-empty {
  min-height: 310px;
  grid-column: 1 / -1;
  padding: 76px 24px;
  text-align: center;
}

.listing-empty h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.listing-empty p {
  max-width: 520px;
  margin: 0 auto;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.55;
}

.listing-empty-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.property-detail-page {
  padding: 48px 0 84px;
  background: hsl(var(--background));
}

.property-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: 32px;
}

.property-detail-main {
  display: grid;
  gap: 28px;
}

.property-gallery {
  overflow: hidden;
  border-radius: 22px;
  background: hsl(var(--muted));
  box-shadow: var(--shadow-md);
}

.property-gallery-stage {
  position: relative;
}

.property-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
}

.property-gallery-main:focus-visible {
  outline: 3px solid hsl(var(--ring));
  outline-offset: -6px;
}

.property-gallery-hint {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.property-gallery-hint .icon {
  width: 16px;
  height: 16px;
}

.property-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: hsl(var(--card));
}

.property-gallery-thumb {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.property-gallery-thumb:hover,
.property-gallery-thumb.is-active {
  background: transparent;
  border-color: hsl(var(--primary));
}

.property-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.property-gallery-nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.property-gallery-nav:hover {
  background: rgba(0, 0, 0, 0.62);
}

.property-gallery-nav.is-prev {
  left: 14px;
}

.property-gallery-nav.is-next {
  right: 14px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 6, 23, 0.92);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox-figure {
  width: min(100%, 1180px);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.photo-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #020617;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  touch-action: pan-y;
  user-select: none;
}

.photo-lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover {
  background: rgba(15, 23, 42, 0.94);
}

.photo-lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  font-size: 28px;
  line-height: 1;
}

.photo-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  min-height: 48px;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}

.photo-lightbox-nav.is-prev {
  left: 20px;
}

.photo-lightbox-nav.is-next {
  right: 20px;
}

.property-detail-header {
  display: grid;
  gap: 12px;
}

.property-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.property-detail-header .lead {
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-detail-price {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: hsl(var(--primary));
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
}

.property-detail-price span {
  color: hsl(var(--muted-foreground));
  font-size: 18px;
  font-weight: 500;
}

.property-detail-price .property-price-chip {
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
}

.property-spec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.property-spec-card {
  min-height: 86px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}

.property-spec-card span {
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  font-weight: 700;
}

.property-spec-card strong {
  color: hsl(var(--foreground));
  font-size: 18px;
  line-height: 1.2;
}

.property-copy-card {
  padding: 28px;
}

.property-copy-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.property-copy-card h2:not(:first-child) {
  margin-top: 30px;
}

.property-copy-card p {
  color: hsl(var(--muted-foreground));
  font-size: 17px;
  line-height: 1.72;
}

.property-detail-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
}

.property-cta-card,
.property-share-card,
.property-info-card {
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.property-cta-card h2,
.property-share-card h2,
.property-info-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.property-cta-card p {
  margin-bottom: 20px;
  color: hsl(var(--muted-foreground));
}

.property-share-card p {
  margin-bottom: 16px;
  color: hsl(var(--muted-foreground));
}

.property-cta-card .btn {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
}

.property-share-actions {
  margin-left: 0;
  gap: 8px;
}

.property-pdf-download {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
}

.property-share-status {
  margin-bottom: 0;
}

.property-info-card dl {
  margin: 0;
  display: grid;
  gap: 0;
}

.property-info-card dl > div {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid hsl(var(--border));
}

.property-info-card dl > div:last-child {
  border-bottom: 0;
}

.property-info-card dt {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.property-info-card dd {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.about-section {
  padding: 96px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about-copy h2 {
  margin-bottom: 24px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
}

.about-copy p {
  max-width: 560px;
  color: hsl(var(--muted-foreground));
  font-size: 20px;
  line-height: 1.48;
}

.about-copy p + p {
  margin-top: 24px;
}

.about-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: inherit;
}

.about-value-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-value-card {
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.about-value-card h3 {
  margin: 22px 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.about-value-card p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.65;
}

.about-proof-section {
  margin-top: 72px;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-proof-card {
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.about-proof-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.about-proof-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.64;
}

.blog-index-section {
  padding-top: 64px;
}

.blog-search {
  width: min(100%, 672px);
  margin: 0 auto 48px;
  position: relative;
  display: flex;
  gap: 10px;
}

.blog-search .icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none;
  z-index: 1;
}

.blog-search input {
  min-height: 56px;
  padding-left: 48px;
  border-radius: 999px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}

.blog-search button {
  min-height: 56px;
  padding-inline: 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.blog-search-result {
  margin: -24px auto 32px;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.blog-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.blog-empty-message {
  grid-column: 1 / -1;
  min-height: 0;
  text-align: center;
}

.blog-card-placeholder {
  display: block;
  height: 235px;
  background: hsl(var(--muted) / 0.5);
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta .icon {
  width: 16px;
  height: 16px;
}

.blog-card h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

.blog-card p {
  margin-top: 10px;
  color: hsl(var(--muted-foreground));
}

.blog-detail-article {
  padding: 48px 0 80px;
  background: hsl(var(--background));
}

.blog-detail-shell {
  max-width: 896px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: hsl(var(--muted-foreground));
  font-weight: 700;
  transition: color 0.2s ease;
}

.blog-back-link:hover {
  color: hsl(var(--primary));
}

.blog-back-link .icon {
  width: 17px;
  height: 17px;
}

.blog-detail-header {
  margin-bottom: 40px;
}

.blog-detail-title {
  max-width: 860px;
  margin-bottom: 24px;
  color: hsl(var(--foreground));
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 800;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}

.blog-detail-stats {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.blog-detail-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-meta .icon {
  width: 20px;
  height: 20px;
}

.blog-share {
  margin-left: auto;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.blog-share > span {
  margin-right: 2px;
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 800;
}

.blog-share-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--background));
  color: hsl(var(--muted-foreground));
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-share-btn:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  transform: translateY(-1px);
}

.blog-share-status {
  min-height: 20px;
  margin-top: 12px;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}

.blog-detail-media {
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 36px hsl(var(--foreground) / 0.12);
}

.blog-detail-media img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.blog-detail-article .blog-content {
  max-width: none;
  margin-top: 0;
}

.blog-detail-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog-tags > span:first-child {
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 800;
}

.blog-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.blog-related-section {
  padding: 64px 0;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.3);
}

.related-property-section,
.related-article-section {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.28);
}

.blog-related-section h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.blog-related-card {
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.blog-related-card img,
.blog-related-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.blog-related-card span:not(.blog-related-placeholder) {
  display: block;
  padding: 18px 20px 0;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
}

.blog-related-card strong {
  display: block;
  padding: 8px 20px 22px;
  color: hsl(var(--foreground));
  font-size: 18px;
  line-height: 1.35;
}

.contact-section {
  padding: 64px 0 92px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: 80px;
}

.contact-info-panel h2,
.direct-consult-card h2 {
  margin-bottom: 24px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}

.contact-info-panel > p,
.direct-consult-card > p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.55;
}

.contact-info-list {
  margin-top: 34px;
  display: grid;
  gap: 28px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.contact-info-item .trust-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 12px;
}

.contact-info-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.contact-info-item p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
}

.contact-social-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid hsl(var(--border));
}

.contact-social-block h3 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-list a {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.direct-consult-card {
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.direct-consult-card .btn {
  width: 100%;
  min-height: 56px;
  margin-top: 32px;
  font-size: 18px;
}

.direct-consult-card small {
  display: block;
  margin-top: 18px;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  text-align: center;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 24px;
  }

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

  .category-card {
    padding: 24px;
  }

  .category-icon {
    width: 64px;
    height: 64px;
  }

  .category-card strong {
    font-size: 16px;
  }
}

@media (min-width: 821px) {
  .trust-card {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 32px;
  }

  .header-inner {
    min-height: 112px;
  }

  .site-logo img {
    width: 280px;
    max-width: min(280px, 72vw);
    max-height: 72px;
  }

  .grid-categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .tracking-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-properties {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-filter {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .property-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .property-detail-aside {
    position: static;
  }

  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav {
    gap: 16px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 80px;
  }

  .site-logo img {
    width: 200px;
    max-width: min(200px, 72vw);
    max-height: 52px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 571px;
    height: 571px;
    padding: 96px 0;
  }

  .hero-content {
    margin-top: 48px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-search {
    width: calc(100% - 24px);
  }

  .listing-filter {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .listing-filter-search {
    min-width: 0;
    grid-column: auto;
  }

  .listing-filter-toggle {
    display: inline-flex;
    white-space: nowrap;
  }

  .listing-filter-advanced {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .listing-filter.is-open .listing-filter-advanced {
    display: grid;
  }

  .listing-filter-actions {
    grid-column: 1 / -1;
  }

  .listing-meta-row {
    flex-direction: column;
    gap: 8px;
  }

  .hero-search input {
    font-size: 14px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search select {
    width: 100%;
  }

  .hero-input {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section {
    padding: 48px 0;
  }

  .subpage-hero {
    padding: 72px 0;
  }

  .subpage-hero h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .subpage-hero p {
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 24px;
    line-height: 1.33;
  }

  .page-title {
    font-size: 32px;
  }

  .section-trust {
    padding: 48px 0;
  }

  .section-trust .section-heading {
    margin-bottom: 40px;
  }

  .section-trust .section-heading h2 {
    font-size: 24px;
    line-height: 1.33;
    white-space: nowrap;
  }

  .section-trust .section-heading p {
    max-width: 672px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .section-heading,
  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tracking-status-grid {
    grid-template-columns: 1fr;
  }

  .grid-properties,
  .grid-trust,
  .contact-grid,
  .contact-layout,
  .about-layout,
  .about-value-grid,
  .about-proof-grid,
  .blog-grid,
  .blog-related-grid,
  .home-seo-grid,
  .admin-maintenance-grid,
  .account-grid,
  .detail-layout,
  .import-layout,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-card {
    padding: 16px;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .trust-card h3 {
    font-size: 16px;
  }

  .trust-card p {
    font-size: 13px;
  }

  .listing-page {
    padding-top: 44px;
  }

  .listing-page.is-category-page .page-title {
    font-size: 28px;
  }

  .listing-skeleton {
    min-height: 330px;
  }

  .listing-empty {
    min-height: 280px;
    padding: 52px 18px;
  }

  .listing-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .property-detail-page {
    padding: 36px 0 56px;
  }

  .property-detail-grid,
  .property-detail-main {
    gap: 24px;
  }

  .property-gallery {
    border-radius: 18px;
  }

  .property-gallery-main {
    aspect-ratio: 4 / 3;
  }

  .property-gallery-hint {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 12px;
  }

  .property-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .property-gallery-thumb {
    width: 96px;
    flex: 0 0 96px;
    scroll-snap-align: start;
  }

  .property-gallery-nav {
    width: 38px;
    height: 38px;
    min-height: 38px;
    font-size: 28px;
  }

  .photo-lightbox {
    padding: 16px;
  }

  .photo-lightbox-figure {
    gap: 10px;
  }

  .photo-lightbox-figure img {
    max-height: calc(100dvh - 112px);
    border-radius: 10px;
  }

  .photo-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .photo-lightbox-nav {
    width: 42px;
    height: 42px;
    min-height: 42px;
    font-size: 30px;
  }

  .photo-lightbox-nav.is-prev {
    left: 12px;
  }

  .photo-lightbox-nav.is-next {
    right: 12px;
  }

  .property-detail-price {
    font-size: 30px;
  }

  .property-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-copy-card,
  .property-cta-card,
  .property-share-card,
  .property-info-card {
    padding: 22px;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-layout {
    gap: 36px;
  }

  .about-copy h2 {
    font-size: 32px;
  }

  .about-copy p {
    font-size: 17px;
  }

  .about-media,
  .about-media img {
    min-height: 320px;
  }

  .about-value-grid {
    margin-top: 44px;
    gap: 18px;
  }

  .blog-index-section {
    padding-top: 48px;
  }

  .blog-grid {
    gap: 24px;
  }

  .blog-card {
    min-height: 380px;
  }

  .blog-detail-article {
    padding: 36px 0 56px;
  }

  .blog-back-link {
    margin-bottom: 26px;
  }

  .blog-detail-title {
    font-size: 32px;
    line-height: 1.18;
  }

  .blog-detail-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .blog-detail-stats {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    font-size: 14px;
  }

  .blog-share {
    width: 100%;
    margin-left: 0;
  }

  .blog-share > span {
    width: auto;
  }

  .blog-detail-media {
    margin-bottom: 34px;
    border-radius: 18px;
  }

  .blog-detail-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-related-section {
    padding: 48px 0;
  }

  .blog-related-section h2 {
    margin-bottom: 28px;
    font-size: 26px;
  }

  .contact-layout {
    gap: 40px;
  }

  .direct-consult-card {
    padding: 24px;
  }

  .image-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-nav {
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .admin-menu-panel {
    position: static;
    margin-top: 8px;
    min-width: 210px;
  }

  .admin-blog-tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .home-seo-copy:first-child {
    grid-row: auto;
  }

  .admin-blog-tool-actions {
    justify-content: flex-start;
  }

  .leads-toolbar {
    flex-direction: column;
  }

  .leads-toolbar .filter {
    width: 100%;
  }

  .leads-toolbar .btn-outline {
    width: 100%;
  }

  .admin-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 16px;
  }

  .stat-grid,
  .image-admin-grid {
    grid-template-columns: 1fr;
  }

  .filter {
    flex-direction: column;
  }

  .blog-search {
    flex-direction: column;
  }

  .blog-search .icon {
    top: 28px;
  }

  .blog-search button {
    width: 100%;
  }

  .property-price-row {
    gap: 6px;
  }

  .property-price-main {
    font-size: 19px;
  }

  .listing-filter {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .listing-filter-toggle {
    width: 100%;
  }

  .listing-filter-advanced {
    grid-template-columns: 1fr;
  }

  .not-found-search {
    grid-template-columns: 1fr;
  }

  .listing-seo-copy,
  .listing-price-links,
  .listing-faq {
    padding: 20px;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 22px;
  }

  .property-detail-badges {
    gap: 6px;
  }

  .property-detail-price {
    font-size: 26px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .site-logo img {
    width: 200px;
    max-width: min(200px, 72vw);
  }

  th,
  td {
    padding: 12px;
  }

  .lead-message {
    max-width: 240px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 20px;
  }
}
