@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap";

/* client/src/styles.css */
:root {
  --ink: #102628;
  --deep: #0b2425;
  --muted: #6b756f;
  --paper: #f8f5ef;
  --surface: #ffffff;
  --line: rgba(16, 38, 40, 0.12);
  --gold: #b99345;
  --gold-dark: #8a6d2b;
  --shadow: 0 18px 45px rgba(16, 38, 40, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}
#root {
  max-width: 100%;
  overflow-x: clip;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.hero-bg,
.difference-bg {
  position: absolute;
  inset: -80px 0 0;
  z-index: -2;
  background-image: url(/cover-header.jpg);
  background-position: center;
  background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 17, 18, 0.7),
      rgba(5, 17, 18, 0.3) 46%,
      rgba(5, 17, 18, 0.72)),
    radial-gradient(
      circle at 50% 45%,
      rgba(185, 147, 69, 0.2),
      transparent 38%);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: transparent;
  color: #fff;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    min-height 220ms ease;
}
.site-header-scrolled {
  min-height: 72px;
  background: #071c1d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 136px;
  min-height: 44px;
}
.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.84rem;
}
.nav a,
.header-phone {
  opacity: 0.88;
  transition: color 180ms ease, opacity 180ms ease;
}
.nav a:hover,
.header-phone:hover {
  color: #f0cf81;
  opacity: 1;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.84rem;
}
.icon-button,
.slider-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
}
.menu-button {
  display: none;
  background: rgba(255, 255, 255, 0.14);
}
.hero-content {
  width: min(1120px, calc(100% - 36px));
  margin: 160px auto 0;
  text-align: center;
}
.hero-logo {
  width: min(220px, 48vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-content h1,
.section-intro h2,
.founder-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}
.hero-content h1 {
  max-width: 1120px;
  margin-inline: auto;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.8rem);
  font-weight: 700;
}
.hero-content h1 span {
  display: block;
}
.hero-title-subline {
  font-size: 38px;
  font-weight: 500;
}
.hero-content p:last-child {
  max-width: 610px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.7;
}
.search-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.95fr 1.05fr 0.92fr auto;
  align-items: stretch;
  width: min(1120px, calc(100% - 36px));
  margin: 48px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.search-panel label {
  display: grid;
  gap: 4px;
  padding: 15px 22px;
  border-right: 1px solid var(--line);
}
.search-panel span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.search-panel input,
.search-panel select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}
.search-panel button,
.gold-button,
.contact-form > button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.search-panel button {
  min-width: 132px;
  border-radius: 999px;
  margin: 7px;
}
.search-panel button:hover,
.gold-button:hover,
.contact-form > button[type=submit]:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-intro {
  width: min(650px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}
.section-intro h2,
.founder-copy h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-intro p:not(.eyebrow),
.founder-copy p,
.contact-copy p {
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.75;
}
.category-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.operation-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 18px;
}
.operation-filter button {
  min-width: 160px;
  min-height: 54px;
  border: 1px solid rgba(16, 38, 40, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 38, 40, 0.08);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.operation-filter button:hover,
.operation-filter button.active {
  background: var(--deep);
  color: #fff;
  transform: translateY(-1px);
}
.category-strip button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}
.category-strip button:hover,
.category-strip button.active {
  border-color: rgba(185, 147, 69, 0.46);
  background: rgba(185, 147, 69, 0.14);
  color: var(--gold-dark);
}
.filter-check {
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 2px;
  stroke-width: 3;
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 6px auto 14px;
}
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 8px 0 14px;
  border: 1px solid rgba(185, 147, 69, 0.42);
  border-radius: 999px;
  background: rgba(185, 147, 69, 0.12);
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.active-chip:hover {
  background: rgba(185, 147, 69, 0.2);
  border-color: rgba(185, 147, 69, 0.6);
}
.active-chip svg:first-child {
  opacity: 0.85;
}
.active-chip svg:last-child {
  display: inline-flex;
  padding: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(138, 109, 43, 0.16);
  transition: background 160ms ease;
}
.active-chip:hover svg:last-child {
  background: rgba(138, 109, 43, 0.28);
}
.clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}
.clear-filters:hover {
  border-color: rgba(16, 38, 40, 0.28);
  background: rgba(16, 38, 40, 0.05);
  color: var(--ink);
}
.active-chip:focus-visible,
.clear-filters:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.property-grid,
.featured-grid,
.agent-grid,
.stats-grid,
.category-gallery {
  display: grid;
  gap: 24px;
}
.property-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.empty-filter-message {
  margin: 26px auto 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}
.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(16, 38, 40, 0.08);
  transition: box-shadow 180ms ease;
}
.property-card:hover {
  box-shadow: var(--shadow);
}
.property-media {
  position: relative;
  aspect-ratio: 1.25 / 0.86;
  overflow: hidden;
}
.property-image-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.property-slider {
  position: absolute;
  inset: 0;
}
.property-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease, transform 600ms ease;
}
.property-slider img.active {
  opacity: 1;
}
.property-card:hover .property-slider img.active {
  transform: scale(1.05);
}
.property-media img,
.neighborhood-tile img,
.agent-card img,
.category-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(16, 38, 40, 0.84);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.property-media span.reserved {
  background: rgba(151, 109, 37, 0.95);
  color: #fff;
}
.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(16, 38, 40, 0.2);
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}
.slider-nav.prev {
  left: 10px;
}
.slider-nav.next {
  right: 10px;
}
.slider-nav:hover {
  background: #fff;
}
.property-card:hover .slider-nav,
.property-card:focus-within .slider-nav {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  gap: 6px;
  transform: translateX(-50%);
}
.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 3px rgba(16, 38, 40, 0.35);
  transition: width 180ms ease, background 180ms ease;
}
.slider-dots button.active {
  width: 18px;
  background: #fff;
}
.property-media span.slider-count {
  position: absolute;
  top: auto;
  left: auto;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(16, 38, 40, 0.78);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (hover: none) {
  .slider-nav {
    opacity: 0.95;
    transform: translateY(-50%) scale(1);
  }
}
.property-body {
  padding: 18px;
}
.property-body p {
  margin: 0 0 9px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}
.property-body h3,
.agent-card h3,
.category-gallery h3,
.neighborhood-tile h3,
.service-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}
.property-body h3,
.service-card h3 {
  color: var(--ink);
}
.property-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.property-body h3 a {
  display: block;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-body h3 a:hover {
  color: var(--gold-dark);
}
.meta-line {
  margin-top: 10px;
  min-width: 0;
}
.meta-line span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.meta-line svg {
  flex-shrink: 0;
  color: var(--gold);
}
.meta-line,
.property-specs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}
.property-specs {
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}
.property-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.property-specs svg {
  color: var(--gold);
}
.gold-button {
  display: flex;
  width: fit-content;
  min-height: 44px;
  margin: 34px auto 0;
  padding: 0 24px;
  border-radius: 999px;
}
.difference {
  position: relative;
  overflow: hidden;
  padding: 96px 20px;
  color: #fff;
  isolation: isolate;
}
.difference-bg {
  background-image: linear-gradient(rgba(12, 27, 28, 0.7), rgba(12, 27, 28, 0.72)), url(https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=2400&h=1100&q=86);
  inset: 0;
}
.difference .section-intro h2 {
  color: #fff;
}
.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(920px, 100%);
  margin: 0 auto;
}
.service-card {
  min-height: 220px;
  padding: 34px 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow);
}
.service-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f1e5c9;
  color: var(--gold-dark);
}
.service-card p {
  color: var(--muted);
  line-height: 1.65;
}
.service-card a {
  color: var(--gold-dark);
  font-weight: 800;
}
.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.property-card.compact .property-media {
  aspect-ratio: 1.68 / 1;
}
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto 86px;
  overflow: hidden;
}
.founder-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.founder-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.founder-copy {
  min-height: 360px;
  margin-left: -48px;
  padding: 62px 70px 62px 110px;
  border-radius: 0 28px 28px 0;
  background: var(--deep);
  color: #fff;
}
.founder-copy h2,
.contact-copy h2 {
  color: #fff;
}
.founder-copy p {
  color: rgba(255, 255, 255, 0.72);
}
.founder-copy span {
  display: block;
  margin-top: 26px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-style: italic;
}
.stats-section {
  padding-top: 20px;
}
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-card {
  display: grid;
  min-height: 170px;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}
.stat-card svg {
  color: #d5c091;
}
.stat-card strong {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: var(--gold-dark);
}
.stat-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 16px;
}
.neighborhood-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}
.neighborhood-tile.wide {
  grid-column: span 2;
  grid-row: span 2;
}
.neighborhood-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent 30%,
      rgba(5, 17, 18, 0.72));
}
.neighborhood-tile div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.neighborhood-tile span,
.category-gallery p,
.agent-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}
.agent-grid {
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
}
.agent-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 8px;
  color: #fff;
}
.agent-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(5, 17, 18, 0.72));
}
.agent-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.agent-card a {
  display: inline-block;
  margin-top: 8px;
  color: #f0cf81;
  font-weight: 800;
}
.testimonial-section {
  display: grid;
  grid-template-columns: 46px minmax(0, 760px) 46px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 96px 24px;
  background: var(--deep);
  color: #fff;
  text-align: center;
}
.testimonial-section blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.2;
}
.stars {
  display: inline-flex;
  gap: 4px;
  margin-top: 24px;
  color: var(--gold);
}
.testimonial-section cite {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}
.testimonial-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}
.testimonial-dots button.active {
  width: 22px;
  background: var(--gold);
}
.slider-button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.slider-button:first-child svg {
  transform: rotate(90deg);
}
.slider-button.next svg {
  transform: rotate(-90deg);
}
.category-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.category-gallery article {
  text-align: center;
}
.category-gallery img {
  aspect-ratio: 1 / 0.78;
  border-radius: 8px;
}
.category-gallery h3 {
  margin-top: 12px;
}
.category-gallery p {
  color: var(--muted);
}
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 52px;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(
      90deg,
      rgba(8, 31, 32, 0.94),
      rgba(8, 31, 32, 0.84)),
    url(https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&h=900&q=86);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.contact-copy {
  align-self: center;
}
.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}
.contact-copy .contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #f0cf81;
  font-weight: 800;
}
.contact-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.contact-copy-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}
.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.contact-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(4, 21, 22, 0.42);
}
.contact-mode-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  cursor: pointer;
}
.contact-mode-tabs button.active {
  background: #fff;
  color: var(--ink);
}
.listing-picker {
  position: relative;
  z-index: 3;
}
.listing-picker-trigger,
.listing-picker-menu button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 10px 14px 10px 10px;
  text-align: left;
  cursor: pointer;
}
.listing-picker-trigger:has(img),
.listing-picker-menu button {
  grid-template-columns: auto 1fr auto;
}
.listing-picker-trigger img,
.listing-picker-menu img {
  width: 58px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}
.listing-picker-trigger span,
.listing-picker-menu span {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.listing-picker-trigger strong,
.listing-picker-menu strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-picker-trigger small,
.listing-picker-menu small {
  color: var(--gold-dark);
  font-weight: 800;
}
.listing-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 8px;
  max-height: 330px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.listing-picker-menu button {
  min-height: 66px;
  border-color: rgba(16, 38, 40, 0.1);
}
.listing-picker-menu button.active,
.listing-picker-menu button:hover {
  border-color: rgba(185, 147, 69, 0.46);
  background: #fff7e8;
}
.listing-picker-menu p {
  margin: 8px;
  color: var(--muted);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 15px 16px;
  outline: 0;
}
.contact-form > button[type=submit] {
  min-height: 48px;
  border-radius: 6px;
}
.form-status {
  margin: 0;
  color: #f4dfad;
  line-height: 1.5;
}
.contact-mobile-actions {
  display: none;
}
.error-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff3e1;
  color: #7c4d12;
  font-weight: 700;
}
.properties-page {
  min-height: 100svh;
  padding-top: 72px;
  background: var(--paper);
}
.properties-hero {
  display: grid;
  gap: 14px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 34px;
  text-align: center;
}
.properties-hero h1 {
  margin: 0;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
}
.properties-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}
.properties-catalog {
  padding-top: 34px;
}
.catalog-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}
.catalog-count {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.catalog-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 220px;
  color: var(--muted);
  font-weight: 800;
}
.seller-page {
  min-height: 100svh;
  padding-top: 72px;
  background: var(--paper);
}
.seller-hero {
  display: grid;
  min-height: 560px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(
      90deg,
      rgba(7, 28, 29, 0.94),
      rgba(7, 28, 29, 0.62)),
    url(https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&h=1000&q=86);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.seller-hero > div {
  max-width: 760px;
}
.seller-hero h1 {
  margin: 0;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.seller-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.75;
}
.seller-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.seller-steps article {
  min-height: 250px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2)) 42px 42px;
  background: var(--paper);
}
.seller-steps span {
  color: var(--gold-dark);
  font-weight: 900;
}
.seller-steps h2 {
  margin: 22px 0 12px;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}
.seller-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.seller-reviews {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  background: #071c1d;
  color: #fff;
}
.seller-reviews-heading {
  grid-column: 1 / -1;
  max-width: 720px;
}
.seller-reviews-heading h2 {
  margin: 0;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}
.seller-reviews article {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.seller-reviews blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
}
.seller-reviews cite {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 800;
}
.whatsapp-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #1f9d58;
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 35, 24, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 35, 24, 0.38);
}
.whatsapp-banner span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
}
.property-detail-page {
  min-height: 100svh;
  padding-top: 72px;
  background: var(--paper);
}
.pdp-topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 160ms ease;
}
.back-link:hover {
  color: var(--gold-dark);
}
.property-status {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(189, 152, 73, 0.14);
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.property-status.reserved {
  background: rgba(151, 109, 37, 0.95);
  color: #fff;
}
.pdp-gallery-wrap {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
}
.pdp-gallery {
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  height: clamp(320px, 50vw, 520px);
}
.pdp-swipe-hint {
  display: none;
}
.pdp-gallery.is-single {
  grid-template-columns: 1fr;
}
.pdp-gallery.is-row {
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.pdp-gallery.is-mosaic {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.pdp-gallery.is-mosaic .pdp-tile:first-child {
  grid-row: 1 / span 2;
}
.pdp-gallery.is-mosaic .pdp-tile:nth-child(n+6) {
  display: none;
}
.pdp-tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--line);
  cursor: pointer;
}
.pdp-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.pdp-tile:hover img {
  transform: scale(1.05);
}
.pdp-tile-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(16, 38, 40, 0.5);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pdp-gallery-all {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 38, 40, 0.2);
  cursor: pointer;
  transition: transform 160ms ease;
}
.pdp-gallery-all:hover {
  transform: translateY(-2px);
}
.pdp-heading {
  display: grid;
  gap: 12px;
}
.pdp-tags {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pdp-ref {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.pdp-heading h1 {
  margin: 0;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.property-detail-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}
.property-detail-location svg {
  flex-shrink: 0;
  color: var(--gold);
}
.pdp-heading .pdp-price {
  margin: 2px 0 0;
  color: var(--gold-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.pdp-card-divider {
  height: 1px;
  margin: 2px 0;
  background: var(--line);
}
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
  align-items: start;
}
.pdp-main {
  display: grid;
  gap: 22px;
  align-content: start;
}
.pdp-main .property-description,
.pdp-main .property-features {
  margin-top: 0;
}
.pdp-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.pdp-facts article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.pdp-facts svg {
  flex-shrink: 0;
  color: var(--gold-dark);
}
.pdp-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pdp-facts strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 1.05rem;
}
.property-description,
.property-features,
.property-contact-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 26px;
}
.property-description h2,
.property-features h2,
.property-contact-card h2 {
  margin: 0 0 12px;
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
}
.property-description p,
.property-contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.property-features div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.property-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f5efe3;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}
.property-features span svg {
  color: var(--gold-dark);
}
.property-contact-card {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 14px;
  margin-top: 0;
  box-shadow: 0 18px 40px rgba(16, 38, 40, 0.08);
}
.property-contact-card .pdp-price {
  margin: 0 0 2px;
  color: var(--gold-dark);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(8, 18, 19, 0.94);
  animation: pdpFade 180ms ease;
}
@keyframes pdpFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pdp-lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.pdp-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease;
}
.pdp-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}
.pdp-lightbox-count {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 700;
}
.pdp-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease;
}
.pdp-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}
.pdp-lightbox-nav.prev {
  left: 24px;
}
.pdp-lightbox-nav.next {
  right: 24px;
}
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
}
.property-contact-card small {
  color: var(--muted);
  font-weight: 800;
}
.property-detail-loading,
.property-detail-empty {
  display: grid;
  place-items: center;
  min-height: 58svh;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}
.property-detail-empty {
  gap: 14px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  background: #071c1d;
  color: rgba(255, 255, 255, 0.68);
}
.footer-logo {
  display: block;
  width: 150px;
  height: auto;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #fff;
}
.legal-page {
  background: #f7f4ef;
  min-height: 100svh;
  padding: 150px 24px 80px;
}
.legal-content {
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
}
.legal-content h1 {
  margin: 8px 0 22px;
  color: var(--ink);
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  font-weight: 800;
  line-height: 0.98;
}
.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family:
    "Google Sans",
    Inter,
    system-ui,
    sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}
.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.legal-content li::marker {
  color: var(--gold-dark);
}
.legal-content a {
  color: var(--gold-dark);
  font-weight: 800;
}
.legal-data-list {
  display: grid;
  gap: 0;
  margin: 24px 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}
.legal-data-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.legal-data-list div:last-child {
  border-bottom: 0;
}
.legal-data-list dt {
  color: var(--ink);
  font-weight: 800;
}
.legal-data-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.admin-auth-page,
.admin-dashboard,
.admin-loading {
  min-height: 100svh;
  background: #09090b;
  color: #fafafa;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.admin-auth-page {
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(185, 147, 69, 0.16),
      transparent 34%),
    linear-gradient(
      180deg,
      #111113,
      #09090b);
}
.admin-auth-card {
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid rgba(250, 250, 250, 0.11);
  border-radius: 12px;
  background: rgba(24, 24, 27, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}
.admin-auth-logo {
  display: inline-flex;
  width: 150px;
  margin-bottom: 28px;
}
.admin-auth-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #d4d4d8;
  font-size: 0.78rem;
  font-weight: 600;
}
.admin-auth-heading h1,
.admin-topbar h1,
.admin-section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}
.admin-auth-heading h1 {
  font-size: 1.65rem;
  line-height: 1.2;
}
.admin-auth-heading p {
  margin: 10px 0 24px;
  color: #a1a1aa;
  line-height: 1.65;
}
.admin-form {
  display: grid;
  gap: 16px;
}
.admin-form label {
  display: grid;
  gap: 8px;
}
.admin-form label > span {
  color: #e4e4e7;
  font-size: 0.88rem;
  font-weight: 600;
}
.admin-form label > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  background: #09090b;
  color: #a1a1aa;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.admin-form label > div:focus-within {
  border-color: #b99345;
  box-shadow: 0 0 0 3px rgba(185, 147, 69, 0.2);
}
.admin-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fafafa;
}
.admin-form input::placeholder {
  color: #71717a;
}
.admin-form button,
.admin-topbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fafafa;
  color: #09090b;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}
.admin-form button:hover,
.admin-topbar button:hover {
  transform: translateY(-1px);
}
.admin-form button:disabled {
  cursor: default;
  opacity: 0.68;
  transform: none;
}
.admin-error,
.admin-toast {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(248, 113, 113, 0.34);
  border-radius: 8px;
  background: rgba(127, 29, 29, 0.24);
  color: #fecaca;
  font-size: 0.9rem;
}
.admin-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}
.admin-dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #09090b;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 22px;
  border-right: 1px solid #27272a;
  background: #0f0f12;
}
.admin-sidebar-logo {
  display: inline-flex;
  width: 142px;
  margin-bottom: 34px;
}
.admin-sidebar nav {
  display: grid;
  gap: 6px;
}
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: #a1a1aa;
  font-size: 0.92rem;
  font-weight: 600;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: #27272a;
  color: #fafafa;
}
.admin-main {
  display: grid;
  gap: 22px;
  padding: 24px;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #27272a;
}
.admin-topbar p,
.admin-section-heading p {
  margin: 0 0 6px;
  color: #a1a1aa;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-topbar h1 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.admin-topbar button {
  min-height: 38px;
  padding: 0 14px;
  border-color: #3f3f46;
  background: #18181b;
  color: #fafafa;
}
.admin-topbar button:disabled {
  cursor: default;
  opacity: 0.68;
  transform: none;
}
.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spin {
  animation: spin 900ms linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.admin-integration-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid #27272a;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(185, 147, 69, 0.16),
      #18181b 42%);
}
.admin-integration-card p,
.admin-integration-card span {
  display: block;
  margin: 0 0 6px;
  color: #a1a1aa;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-integration-card h2,
.admin-integration-card strong {
  display: block;
  margin: 0;
  color: #fafafa;
  font-size: 1rem;
  line-height: 1.3;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.admin-metrics article,
.admin-panel-section {
  border: 1px solid #27272a;
  border-radius: 12px;
  background: #18181b;
}
.admin-metrics article {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.admin-metrics span {
  color: #a1a1aa;
  font-size: 0.86rem;
  font-weight: 600;
}
.admin-metrics strong {
  font-size: 2rem;
  line-height: 1;
}
.admin-panel-section {
  overflow: hidden;
}
.admin-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid #27272a;
}
.admin-section-heading h2 {
  font-size: 1.12rem;
}
.admin-section-heading > span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid #3f3f46;
  border-radius: 999px;
  color: #d4d4d8;
  font-size: 0.8rem;
  font-weight: 700;
}
.admin-table {
  display: grid;
}
.admin-table article {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #27272a;
}
.admin-table article:last-child {
  border-bottom: 0;
}
.admin-table strong,
.admin-table span,
.admin-table p,
.admin-table time {
  min-width: 0;
}
.admin-table strong {
  display: block;
  margin-bottom: 4px;
}
.admin-table span,
.admin-table p,
.admin-table time,
.admin-empty,
.admin-loading {
  color: #a1a1aa;
}
.admin-table p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-table time {
  font-size: 0.84rem;
  white-space: nowrap;
}
.admin-empty {
  padding: 28px 18px;
}
.admin-loading {
  display: grid;
  place-items: center;
  font-weight: 700;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .menu-button {
    display: inline-grid;
    justify-self: end;
  }
  .nav {
    position: absolute;
    top: 68px;
    right: 0;
    display: none;
    min-width: 220px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(8, 31, 32, 0.96);
    box-shadow: var(--shadow);
  }
  .nav-open {
    display: grid;
    gap: 16px;
  }
  .header-phone {
    justify-self: end;
  }
  .search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }
  .search-panel button {
    grid-column: 1 / -1;
    min-height: 50px;
  }
  .property-grid,
  .featured-grid,
  .agent-grid,
  .category-gallery,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-row,
  .founder,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .founder-copy {
    margin: -36px 18px 0;
    padding: 70px 34px 38px;
    border-radius: 20px;
  }
  .neighborhood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-dashboard {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #27272a;
  }
  .admin-sidebar nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-table article {
    grid-template-columns: 1fr;
  }
  .admin-integration-card {
    grid-template-columns: 1fr;
  }
  .pdp-layout {
    grid-template-columns: 1fr;
  }
  .property-contact-card {
    position: static;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: 900px;
    max-width: 100%;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .site-header {
    gap: 12px;
    max-width: 100%;
    padding-inline: 14px;
  }
  .header-phone {
    display: none;
  }
  .hero-content {
    width: min(780px, calc(100% - 36px));
    margin-top: 150px;
    text-align: center;
  }
  .hero-logo {
    display: none;
  }
  .hero-content h1 {
    max-width: 18ch;
    font-size: clamp(1.7rem, 7vw, 2.05rem);
    line-height: 1.12;
    text-wrap: balance;
  }
  .hero-title-subline {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.05rem, 5.1vw, 1.28rem);
    line-height: 1.2;
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .hero-content p:last-child {
    max-width: min(22.8rem, 100%);
    margin-inline: auto;
  }
  .search-panel,
  .property-grid,
  .featured-grid,
  .agent-grid,
  .category-gallery,
  .stats-grid,
  .service-row,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .pdp-topbar {
    width: min(100% - 28px, 680px);
  }
  .pdp-gallery-wrap {
    width: min(100% - 28px, 680px);
  }
  .pdp-gallery {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    grid-template-rows: none;
    width: 100%;
    height: clamp(260px, 70vw, 380px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 10px;
  }
  .pdp-gallery::-webkit-scrollbar {
    display: none;
  }
  .pdp-gallery .pdp-tile {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: 0;
  }
  .pdp-gallery.is-mosaic .pdp-tile:first-child {
    grid-row: auto;
  }
  .pdp-gallery.is-mosaic .pdp-tile:nth-child(n+6) {
    display: block;
  }
  .pdp-tile-more,
  .pdp-gallery-all {
    display: none;
  }
  .pdp-swipe-hint {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(16, 38, 40, 0.82);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%);
    animation: pdpHintIn 240ms ease, pdpHintNudge 1.8s ease-in-out 0.4s infinite;
  }
  .pdp-swipe-hint svg {
    animation: pdpHintArrow 1.8s ease-in-out 0.4s infinite;
  }
  @keyframes pdpHintIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes pdpHintNudge {
    0%, 100% {
      transform: translateX(-50%);
    }
    50% {
      transform: translateX(-46%);
    }
  }
  @keyframes pdpHintArrow {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(3px);
    }
  }
  .pdp-lightbox-nav,
  .pdp-lightbox-close {
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
  }
  .properties-hero {
    width: min(100% - 28px, 680px);
    padding: 48px 0 18px;
  }
  .properties-hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.05;
  }
  .properties-catalog {
    width: min(100% - 28px, 680px);
  }
  .pdp-heading h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    line-height: 1.08;
  }
  .pdp-layout {
    width: min(100% - 28px, 680px);
    padding: 22px 0 54px;
  }
  .pdp-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pdp-lightbox {
    padding: 16px;
  }
  .pdp-lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .pdp-lightbox-nav.prev {
    left: 10px;
  }
  .pdp-lightbox-nav.next {
    right: 10px;
  }
  .property-description,
  .property-features,
  .property-contact-card {
    padding: 20px;
  }
  .contact-mobile-actions {
    display: grid;
    gap: 12px;
    margin-top: -34px;
  }
  .contact-copy-actions {
    display: none;
  }
  .contact-mode-tabs {
    border-radius: 8px;
  }
  .contact-mode-tabs button {
    min-height: 44px;
    font-size: 0.9rem;
  }
  .listing-picker-trigger,
  .listing-picker-menu button {
    min-height: 66px;
  }
  .listing-picker-menu {
    max-height: 286px;
  }
  .contact-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
  }
  .contact-mobile-whatsapp {
    background: #1f9d58;
    color: #fff;
    box-shadow: 0 14px 34px rgba(15, 35, 24, 0.28);
  }
  .contact-mobile-call {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
  }
  .legal-page {
    padding-inline: 16px;
  }
  .legal-data-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 16px;
  }
  .seller-hero {
    min-height: 520px;
    padding: 84px 18px 58px;
  }
  .seller-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }
  .seller-hero p:not(.eyebrow) {
    font-size: 1rem;
  }
  .seller-steps {
    grid-template-columns: 1fr;
  }
  .seller-steps article {
    min-height: 0;
    padding: 30px 18px;
  }
  .seller-reviews {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 18px;
  }
  .seller-reviews article {
    text-align: left;
  }
  .seller-reviews blockquote {
    font-size: clamp(1.35rem, 6.4vw, 2.1rem);
  }
  .search-panel {
    width: calc(100% - 28px);
    margin: 34px auto 56px;
  }
  .search-panel label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
  }
  .section-intro {
    text-align: left;
  }
  .category-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .category-gallery article {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    border-radius: 8px;
    text-align: left;
    color: #fff;
  }
  .category-gallery article::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(
        180deg,
        transparent 30%,
        rgba(5, 17, 18, 0.78));
  }
  .category-gallery img {
    width: 100%;
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
    border-radius: 0;
  }
  .category-gallery h3,
  .category-gallery p {
    position: absolute;
    z-index: 1;
    left: 14px;
    right: 14px;
  }
  .category-gallery h3 {
    bottom: 34px;
    margin: 0;
    color: #fff;
    font-size: 1rem;
  }
  .category-gallery p {
    bottom: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
  }
  .category-strip {
    justify-content: flex-start;
  }
  .difference {
    padding: 74px 14px;
  }
  .founder {
    width: min(100% - 28px, 1120px);
  }
  .founder-image img {
    height: 430px;
  }
  .neighborhood-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .neighborhood-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .testimonial-section {
    grid-template-columns: 1fr;
  }
  .slider-button {
    display: none;
  }
  footer {
    display: grid;
  }
  .whatsapp-banner {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-banner svg {
    width: 28px;
    height: 28px;
  }
  .admin-auth-card {
    padding: 24px;
  }
  .admin-main {
    padding: 18px;
  }
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-topbar button {
    width: 100%;
  }
  .admin-topbar-actions {
    width: 100%;
    flex-direction: column;
  }
  .admin-sidebar nav,
  .admin-metrics {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=app.css.map */
