/* ===== Tokens ===== */
:root {
  --bg: oklch(0.99 0.005 80);
  --surface: #ffffff;
  --surface-2: oklch(0.97 0.005 80);
  --surface-3: oklch(0.94 0.006 80);
  --ink: oklch(0.18 0.01 80);
  --ink-2: oklch(0.38 0.01 80);
  --ink-3: oklch(0.55 0.01 80);
  --line: oklch(0.91 0.005 80);
  --line-2: oklch(0.86 0.006 80);

  --brand: oklch(0.62 0.16 35);
  --brand-ink: oklch(0.42 0.14 35);
  --brand-soft: oklch(0.96 0.03 35);

  --accent: oklch(0.55 0.07 155);
  --accent-soft: oklch(0.96 0.025 155);

  --gold: oklch(0.78 0.13 75);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 16, 12, 0.04), 0 1px 1px rgba(20, 16, 12, 0.03);
  --shadow: 0 4px 14px rgba(20, 16, 12, 0.06), 0 2px 4px rgba(20, 16, 12, 0.04);
  --shadow-lg: 0 18px 40px rgba(20, 16, 12, 0.10), 0 6px 14px rgba(20, 16, 12, 0.05);
  --shadow-pop: 0 24px 60px rgba(20, 16, 12, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1240px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; font-size: 22px; letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--ink); }
.brand__mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--brand);
  display: grid; place-items: center;
  color: #fff;
}
.brand__mark svg { width: 18px; height: 18px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__link:hover { background: rgba(255,255,255,0.15); color: #fff; }
.site-header.is-scrolled .nav__link { color: var(--ink-2); }
.site-header.is-scrolled .nav__link:hover { background: var(--surface-2); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 8px; }
.btn-ghost {
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.9);
  transition: background 0.2s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }
.site-header.is-scrolled .btn-ghost { color: var(--ink-2); }
.site-header.is-scrolled .btn-ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn-outline {
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 600; font-size: 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all 0.2s var(--ease);
}
.btn-outline:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.site-header.is-scrolled .btn-outline { border-color: var(--line-2); background: #fff; color: var(--ink); }
.site-header.is-scrolled .btn-outline:hover { border-color: var(--ink); }

/* ===== Hero Fullscreen ===== */
.hero--full {
  position: relative;
  height: auto;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.15) 28%, rgba(20,16,12,0.15) 60%, rgba(20,16,12,0.7) 100%),
    linear-gradient(90deg, rgba(20,16,12,0.5) 0%, rgba(20,16,12,0.05) 55%, rgba(20,16,12,0) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  padding-top: 140px;
  padding-bottom: 48px;
  gap: 56px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero--full .hero__content {
  max-width: 720px;
  margin-right: auto;
}
.hero--full .search-form {
  max-width: 760px;
}
.hero--full .hero__eyebrow {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 14px;
}
.hero--full .hero__eyebrow .dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(220,180,80,0.25);
}
.hero--full h1 {
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
  margin-bottom: 22px;
}
.hero--full h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold, oklch(0.78 0.13 75));
  letter-spacing: -0.01em;
}
.hero--full .hero__sub {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero--full .search-fields {
  grid-template-columns: 1fr;
}
.hero--full .search-submit {
  grid-column: 1;
  padding: 14px;
}
.hero--full .search-form {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.15);
  width: 100%;
}
.hero__bottom {
  position: relative; z-index: 2;
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero--full .hero__stats {
  display: flex; gap: 36px;
  margin: 0; padding: 0; border: 0;
  color: #fff;
}
.hero--full .hero__stat strong {
  font-family: 'Inter Tight', sans-serif;
  font-size: 30px; font-weight: 600; letter-spacing: -0.03em;
  display: block;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero--full .hero__stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__scroll {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.hero__scroll-line {
  display: block;
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; top: 0; left: -30%;
  width: 30%; height: 100%;
  background: #fff;
  animation: scrollPing 2.4s ease-in-out infinite;
}
@keyframes scrollPing {
  0% { left: -30%; }
  100% { left: 100%; }
}
.hero--full .hero__content > * {
  opacity: 0; transform: translateY(20px);
  animation: heroIn 0.9s var(--ease-out) forwards;
}
.hero--full .hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero--full .hero__content > *:nth-child(2) { animation-delay: 0.22s; }
.hero--full .hero__content > *:nth-child(3) { animation-delay: 0.34s; }
.hero--full .hero__content > *:nth-child(4) { animation-delay: 0.46s; }
.hero--full .hero__bottom {
  opacity: 0; transform: translateY(20px);
  animation: heroIn 0.9s var(--ease-out) 0.6s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 880px) {
  .hero--full { height: auto; }
  .hero__inner { padding-top: 100px; padding-bottom: 40px; gap: 40px; }
  .hero--full h1 { font-size: 42px; }
  .hero--full .hero__stats { gap: 20px; }
  .hero--full .hero__stat strong { font-size: 22px; }
  .hero__scroll { display: none; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ===== Search Form ===== */
.search-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.search-tabs {
  display: flex; gap: 4px; padding: 4px; margin-bottom: 8px;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
  width: fit-content;
}
.search-tab {
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: all 0.25s var(--ease);
}
.search-tab.is-active {
  background: var(--ink); color: #fff;
}
.search-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.search-field {
  background: var(--surface);
  padding: 12px 16px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  position: relative;
  min-width: 0;
}
.search-field:hover { background: var(--surface-2); }
.search-field__label {
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.search-field__value {
  font-size: 14px; font-weight: 500; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-field__value.is-placeholder { color: var(--ink-3); font-weight: 400; }
.search-submit {
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  padding: 0 24px;
  font-weight: 600; font-size: 14px;
  gap: 8px; min-width: 130px;
  transition: all 0.25s var(--ease);
}
.search-submit:hover { background: var(--brand-ink); }
.search-submit svg { width: 16px; height: 16px; }
.search-submit__inner { display: flex; align-items: center; gap: 8px; }
.search-extras {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 8px 4px; flex-wrap: wrap; gap: 12px;
}
.search-code {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-3);
}
.search-code input {
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-size: 13px; width: 130px;
  background: var(--surface-2);
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.search-code input:focus { border-color: var(--ink); background: #fff; }
.search-code button {
  font-size: 12px; font-weight: 600; color: var(--brand-ink);
}

/* ===== Chosen dropdown ===== */
.chosen-pop {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 8px;
  z-index: 30;
  opacity: 0; transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.25s var(--ease);
  min-width: 280px;
  max-height: 360px;
  display: flex; flex-direction: column;
}
.search-field.is-open .chosen-pop {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.chosen-pop__search { position: relative; margin-bottom: 4px; }
.chosen-pop__search input {
  width: 100%; padding: 10px 12px 10px 34px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; outline: none; background: var(--surface-2);
  transition: all 0.2s var(--ease);
}
.chosen-pop__search input:focus { background: #fff; border-color: var(--ink-2); }
.chosen-pop__search svg {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--ink-3);
}
.chosen-pop__chips {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 4px 2px; max-height: 70px; overflow-y: auto;
}
.chosen-pop__chips:empty { display: none; }
.chosen-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 4px 4px 10px;
  background: var(--brand-soft); color: var(--brand-ink);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500;
  animation: chipIn 0.25s var(--ease);
}
@keyframes chipIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.chosen-chip button {
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; color: var(--brand-ink);
  transition: background 0.2s var(--ease);
}
.chosen-chip button:hover { background: rgba(0,0,0,0.08); }
.chosen-chip button svg { width: 10px; height: 10px; }
.chosen-pop__list { list-style: none; margin: 0; padding: 4px 0; overflow-y: auto; flex: 1; }
.chosen-pop__item {
  padding: 9px 12px; border-radius: var(--radius-sm);
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  font-size: 14px; transition: background 0.15s var(--ease);
}
.chosen-pop__item:hover, .chosen-pop__item.is-active { background: var(--surface-2); }
.chosen-pop__item.is-selected { color: var(--brand-ink); font-weight: 500; }
.chosen-pop__check {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.chosen-pop__item.is-selected .chosen-pop__check { background: var(--brand); border-color: var(--brand); }
.chosen-pop__check svg { width: 11px; height: 11px; color: #fff; opacity: 0; transform: scale(0.5); transition: all 0.15s var(--ease); }
.chosen-pop__item.is-selected .chosen-pop__check svg { opacity: 1; transform: scale(1); }
.chosen-pop__empty { padding: 18px 12px; text-align: center; color: var(--ink-3); font-size: 13px; }

/* ===== Section headers ===== */
.section { padding: 80px 0; position: relative; }
.section--alt { background: var(--surface-2); }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 32px; gap: 24px; flex-wrap: wrap;
}
.section-head__title { font-size: clamp(28px, 3vw, 36px); letter-spacing: -0.03em; }
.section-head__sub { font-size: 16px; color: var(--ink-2); margin-top: 8px; max-width: 560px; }
.section-head__link {
  font-size: 14px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s var(--ease);
}
.section-head__link:hover { gap: 10px; }
.section-head__link svg { width: 14px; height: 14px; }

/* ===== Quick search cards ===== */
.quick-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.quick-card {
  position: relative; aspect-ratio: 1 / 1.15;
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface-3); cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.quick-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.quick-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%); }
.quick-card__label { position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff; font-weight: 600; font-size: 14px; z-index: 1; line-height: 1.25; }
.quick-card__icon {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; background: rgba(255,255,255,0.92);
  border-radius: 10px; display: grid; place-items: center; z-index: 1;
  transition: transform 0.3s var(--ease);
}
.quick-card__icon svg { width: 16px; height: 16px; color: var(--ink); }
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quick-card:hover img { transform: scale(1.08); }
.quick-card:hover .quick-card__icon { transform: rotate(-6deg) scale(1.1); }

/* ===== Property carousel ===== */
.carousel { position: relative; }
.carousel__tabs {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--surface-2); border-radius: var(--radius-pill); margin-bottom: 24px;
}
.carousel__tab { padding: 8px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--ink-2); transition: all 0.25s var(--ease); }
.carousel__tab.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.carousel__track-wrap { position: relative; }
.carousel__track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 8px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; border: 1px solid var(--line);
  transition: all 0.25s var(--ease);
}
.carousel__nav:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-lg); }
.carousel__nav:disabled { opacity: 0.35; cursor: default; transform: translateY(-50%); }
.carousel__nav--prev { left: -22px; }
.carousel__nav--next { right: -22px; }
.carousel__nav svg { width: 16px; height: 16px; }

/* ===== Property card ===== */
.prop-card {
  width: 320px; background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s var(--ease);
  cursor: pointer; display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.prop-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-3); }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.prop-card:hover .prop-card__media img { transform: scale(1.06); }
.prop-card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  padding: 5px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.95); color: var(--ink); letter-spacing: 0.01em; backdrop-filter: blur(6px);
}
.badge--brand { background: var(--brand); color: #fff; }
.badge--accent { background: var(--accent); color: #fff; }
.badge--dark { background: rgba(20,16,12,0.85); color: #fff; }
.badge--gold { background: var(--gold); color: oklch(0.25 0.06 75); }
.prop-card__fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.95); display: grid; place-items: center;
  transition: all 0.25s var(--ease); backdrop-filter: blur(6px);
}
.prop-card__fav:hover { transform: scale(1.1); }
.prop-card__fav svg { width: 16px; height: 16px; color: var(--ink); transition: all 0.25s var(--ease); }
.prop-card__fav.is-active { background: var(--brand); }
.prop-card__fav.is-active svg { color: #fff; fill: #fff; }
.prop-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prop-card__loc { font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 4px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.prop-card__loc svg { width: 12px; height: 12px; }
.prop-card__title { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prop-card__specs { display: flex; gap: 14px; font-size: 13px; color: var(--ink-2); margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--line); }
.prop-card__spec { display: flex; align-items: center; gap: 5px; }
.prop-card__spec svg { width: 14px; height: 14px; color: var(--ink-3); }
.prop-card__price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 8px; }
.prop-card__price { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.prop-card__price small { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.prop-card__cond { font-size: 12px; color: var(--ink-3); }

/* ===== CTA Strip ===== */
.cta-strip {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, oklch(0.62 0.16 35 / 0.35), transparent 60%);
  pointer-events: none;
}
.cta-strip h2 { font-size: clamp(24px, 2.5vw, 32px); letter-spacing: -0.03em; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,0.7); margin-top: 6px; position: relative; z-index: 1; }

/* ===== Footer ===== */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--ink-3); font-size: 14px; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-col li { color: var(--ink-3); font-size: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3); flex-wrap: wrap; gap: 16px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--ink-2);
  transition: all 0.25s var(--ease);
}
.footer-socials a:hover { border-color: var(--ink); color: var(--ink); background: var(--surface-2); transform: translateY(-2px); }
.footer-socials svg { width: 15px; height: 15px; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal--stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal--stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal--stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .quick-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 880px) {
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-submit { grid-column: span 2; padding: 14px; }
  .nav { display: none; }
  .section { padding: 56px 0; }
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 28px; }
}
@media (max-width: 600px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-fields { grid-template-columns: 1fr; }
  .search-submit { grid-column: 1; }
  .carousel__nav { display: none; }
}
