/*
  HOME KONCEPT — Premium Minimal UI (static, vanilla)
  - Mobile-first
  - CSS variables, clamp(), grid/flex
  - Sticky header
  - Soft shadows, rounded corners, subtle motion
*/

:root {
  /* Colors */
  --bg: #f7f5f1;
  --bg-2: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #0c1118;
  --muted: rgba(12, 17, 24, 0.68);
  --muted-2: rgba(12, 17, 24, 0.52);
  --border: rgba(12, 17, 24, 0.10);
  --shadow: 0 18px 60px rgba(12, 17, 24, 0.10);
  --shadow-soft: 0 10px 30px rgba(12, 17, 24, 0.08);

  /* Accent (gold/beige) */
  --accent: #c9a36a;
  --accent-2: #e6d3b1;
  --accent-ink: #1c140a;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Manrope", var(--font-sans);
  --radius: 18px;
  --radius-sm: 14px;

  /* Spacing */
  --container: 1180px;
  --pad: clamp(18px, 4.2vw, 52px);
  --section: clamp(56px, 7vw, 104px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -20%, rgba(201, 163, 106, 0.22), transparent 55%),
    radial-gradient(900px 520px at 10% 10%, rgba(230, 211, 177, 0.22), transparent 55%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.muted.small {
  font-size: 0.92rem;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.h1,
.h2,
.h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

.h1 {
  font-size: clamp(34px, 4.2vw, 56px);
}

.h2 {
  font-size: clamp(26px, 3.1vw, 36px);
}

.h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.lead {
  font-size: clamp(16px, 2.2vw, 18.5px);
  color: var(--muted);
  margin: 12px 0 0;
}

.link {
  color: rgba(12, 17, 24, 0.84);
  font-weight: 600;
  transition: color 180ms var(--ease);
}

.link:hover {
  color: var(--text);
}

/* Topbar */
.topbar {
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  justify-content: space-between;
}
.topbar__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 163, 106, 0.18);
  color: rgba(28, 20, 10, 0.88);
  border: 1px solid rgba(201, 163, 106, 0.35);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  white-space: nowrap;
}
.topbar__text {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.topbar__link {
  font-weight: 700;
  color: rgba(12, 17, 24, 0.86);
  white-space: nowrap;
}
.topbar__link:hover {
  text-decoration: underline;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 241, 0.62);
  backdrop-filter: blur(18px);
}

.site-header.is-sticky {
  box-shadow: 0 10px 30px rgba(12, 17, 24, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(255, 255, 255, 0.85), transparent 60%),
    linear-gradient(135deg, rgba(201, 163, 106, 0.95), rgba(12, 17, 24, 0.92));
  box-shadow: 0 14px 26px rgba(12, 17, 24, 0.14);
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__name strong {
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav__toggleLines {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.nav__toggleLines::before,
.nav__toggleLines::after,
.nav__toggleLines {
  content: "";
  background: rgba(12, 17, 24, 0.84);
  height: 2px;
  border-radius: 2px;
}
.nav__toggleLines::before,
.nav__toggleLines::after {
  position: absolute;
  left: 0;
  right: 0;
}
.nav__toggleLines::before {
  top: 0;
}
.nav__toggleLines::after {
  bottom: 0;
}
.nav__toggleLines {
  top: 0;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile menu (default) */
.nav__list {
  position: fixed;
  inset: 0;
  background: rgba(247, 245, 241, 0.86);
  backdrop-filter: blur(18px);
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 92px var(--pad) 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.nav__list.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  font-weight: 700;
}

.nav__link:hover {
  border-color: rgba(201, 163, 106, 0.55);
}

.nav__link.is-active {
  border-color: rgba(201, 163, 106, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 163, 106, 0.18);
}

.nav__cta {
  margin-top: 10px;
}

/* Desktop nav */
@media (min-width: 980px) {
  .nav__toggle {
    display: none;
  }
  .nav__list {
    position: static;
    inset: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav__link {
    background: transparent;
    border: 1px solid transparent;
    padding: 10px 10px;
    font-weight: 700;
    color: rgba(12, 17, 24, 0.84);
  }
  .nav__link:hover {
    color: rgba(12, 17, 24, 1);
    border-color: rgba(12, 17, 24, 0.10);
    background: rgba(255, 255, 255, 0.45);
  }
  .nav__cta {
    margin-top: 0;
    margin-left: 6px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 140ms var(--ease), box-shadow 140ms var(--ease), border-color 140ms var(--ease),
    background 140ms var(--ease);
  box-shadow: var(--shadow-soft);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 163, 106, 0.55);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(201, 163, 106, 0.95), rgba(201, 163, 106, 0.70));
  border-color: rgba(201, 163, 106, 0.85);
  color: rgba(28, 20, 10, 0.92);
  box-shadow: 0 18px 38px rgba(201, 163, 106, 0.22);
}
.btn--primary:hover {
  box-shadow: 0 22px 48px rgba(201, 163, 106, 0.26);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.50);
}
.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.btn__hint {
  font-weight: 800;
  font-size: 0.84rem;
  color: rgba(28, 20, 10, 0.85);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 17, 24, 0.10);
  border-radius: 999px;
  padding: 6px 10px;
}

/* Sections */
.section {
  padding: var(--section) 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.35));
  border-top: 1px solid rgba(12, 17, 24, 0.06);
  border-bottom: 1px solid rgba(12, 17, 24, 0.06);
}
.section--tight {
  padding: clamp(34px, 5vw, 64px) 0;
}

.sectionHead {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.sectionActions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* Hero */
.hero {
  padding: clamp(54px, 7vw, 86px) 0;
}

.hero__grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0;
}

.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  margin: 14px 0 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trustbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 720px) {
  .trustbar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(12, 17, 24, 0.82);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.trustbar__icon {
  color: rgba(201, 163, 106, 0.95);
}

.hero__media {
  position: relative;
}

.heroCard {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.heroCard__image img {
  height: clamp(240px, 40vw, 420px);
  width: 100%;
  object-fit: cover;
}

.heroCard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.75);
}

.stat {
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(12, 17, 24, 0.08);
  background: rgba(255, 255, 255, 0.60);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}
.stat__label {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.92rem;
}

.heroGlow {
  position: absolute;
  inset: -60px -80px;
  z-index: -1;
  background: radial-gradient(420px 420px at 70% 45%, rgba(201, 163, 106, 0.25), transparent 60%),
    radial-gradient(420px 420px at 30% 20%, rgba(230, 211, 177, 0.22), transparent 55%);
  filter: blur(20px);
  opacity: 0.95;
}

/* Page hero */
.pageHero {
  padding: clamp(44px, 6vw, 74px) 0;
}
.pageHero--compact {
  padding: clamp(34px, 4.8vw, 54px) 0;
}
.pageHero__inner {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 980px) {
  .pageHero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
  }
}
.pageHero__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 24, 0.10);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.60);
}
.pageHero__media img {
  width: 100%;
  height: clamp(220px, 34vw, 380px);
  object-fit: cover;
}

/* Layout helpers */
.split {
  display: grid;
  gap: 22px;
  align-items: start;
}
@media (min-width: 980px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
  }
  .split--reverse {
    grid-template-columns: 1fr 1fr;
  }
}

.grid {
  display: grid;
  gap: 16px;
}
.grid--3 {
  grid-template-columns: 1fr;
}
.grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.card--link {
  position: relative;
  overflow: hidden;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.card--link::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(240px 240px at 60% 30%, rgba(201, 163, 106, 0.20), transparent 55%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}
.card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 163, 106, 0.55);
  box-shadow: 0 18px 52px rgba(12, 17, 24, 0.10);
}
.card--link:hover::after {
  opacity: 1;
}
.card__cta {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: rgba(12, 17, 24, 0.88);
}

.featureBox {
  display: grid;
  gap: 12px;
}
.featureBox__item {
  border-radius: var(--radius);
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 163, 106, 0.35);
  background: rgba(201, 163, 106, 0.15);
  color: rgba(28, 20, 10, 0.90);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.84rem;
}
.pill--soft {
  border-color: rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.60);
  color: rgba(12, 17, 24, 0.80);
}
.pill--dark {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(12, 17, 24, 0.65);
  color: rgba(255, 255, 255, 0.92);
}
.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: rgba(12, 17, 24, 0.84);
  font-weight: 600;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(201, 163, 106, 0.18);
  border: 1px solid rgba(201, 163, 106, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(28, 20, 10, 0.90);
  font-weight: 900;
  line-height: 1;
}

.miniCtas {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.imageCard {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 24, 0.10);
  box-shadow: var(--shadow);
  position: relative;
}
.imageCard img {
  width: 100%;
  height: clamp(240px, 40vw, 420px);
  object-fit: cover;
}
.imageCard__overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-soft);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(201, 163, 106, 0.95);
  font-size: 1.2rem;
}

/* Properties */
.propertiesGrid {
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .propertiesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .propertiesGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.propertyCard {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  display: grid;
}
.propertyCard__media {
  position: relative;
  overflow: hidden;
}
.propertyCard__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms var(--ease);
}
.propertyCard:hover .propertyCard__media img {
  transform: scale(1.06);
}
.propertyCard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  gap: 8px;
}
.propertyCard__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.propertyCard__title {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.propertyCard__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 650;
}
.propertyCard__priceRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.propertyCard__price {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
}
.propertyCard__actions {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.resultsBar {
  margin: 18px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.resultsBar__left,
.resultsBar__right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Quote */
.quote {
  border-radius: var(--radius);
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.quote__stars {
  color: rgba(201, 163, 106, 0.95);
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 8px;
}
.quote__text {
  margin: 0;
  color: rgba(12, 17, 24, 0.86);
  font-weight: 650;
}
.quote__author {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

/* CTA */
.cta {
  padding: clamp(56px, 6.6vw, 96px) 0;
}
.cta__inner {
  border-radius: 26px;
  border: 1px solid rgba(201, 163, 106, 0.35);
  background: radial-gradient(600px 320px at 20% 30%, rgba(201, 163, 106, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3.2vw, 32px);
  display: grid;
  gap: 18px;
  align-items: center;
}
@media (min-width: 980px) {
  .cta__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 980px) {
  .cta__actions {
    justify-content: flex-end;
  }
}

/* Forms */
.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.form__row {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: rgba(12, 17, 24, 0.86);
}
.field span {
  font-size: 0.92rem;
  color: rgba(12, 17, 24, 0.78);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(12, 17, 24, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 12px;
  outline: none;
  transition: box-shadow 160ms var(--ease), border-color 160ms var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201, 163, 106, 0.65);
  box-shadow: 0 0 0 4px rgba(201, 163, 106, 0.18);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}
.check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Filters */
.filters {
  border-radius: 26px;
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.filters__title {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.filters__grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 980px) {
  .filters__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.filters__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: end;
}
@media (min-width: 980px) {
  .filters__actions {
    grid-column: 1 / -1;
  }
}

/* Offer details */
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.offerHeader {
  display: grid;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}
@media (min-width: 980px) {
  .offerHeader {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.offerHeader__price {
  justify-self: start;
}
@media (min-width: 980px) {
  .offerHeader__price {
    justify-self: end;
    text-align: right;
  }
}
.price {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: clamp(26px, 3.2vw, 40px);
}

.gallery {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}
@media (min-width: 980px) {
  .gallery {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.gallery__main {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 24, 0.10);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.70);
}
.gallery__main img {
  width: 100%;
  height: clamp(260px, 44vw, 460px);
  object-fit: cover;
}
.gallery__thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 980px) {
  .gallery__thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.thumb {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.70);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease);
}
.thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 163, 106, 0.55);
}
.thumb.is-active {
  border-color: rgba(201, 163, 106, 0.70);
  box-shadow: 0 0 0 4px rgba(201, 163, 106, 0.18);
}
.thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.offerGrid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 980px) {
  .offerGrid {
    grid-template-columns: 1fr 1fr;
  }
}
.offerGrid--two {
  margin-top: 14px;
}

.specs {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(12, 17, 24, 0.08);
  background: rgba(255, 255, 255, 0.62);
}
.spec__k {
  color: var(--muted);
  font-weight: 700;
}
.spec__v {
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Map placeholder */
.mapPlaceholder {
  border-radius: 26px;
  overflow: hidden;
  border: 1px dashed rgba(12, 17, 24, 0.18);
  background:
    radial-gradient(500px 280px at 30% 30%, rgba(201, 163, 106, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
  min-height: 240px;
  display: grid;
  place-items: center;
}
.mapPlaceholder__inner {
  text-align: center;
  padding: 18px;
}

/* Contact */
.contactGrid {
  display: grid;
  gap: 14px;
}
@media (min-width: 980px) {
  .contactGrid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}
.contactList {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.contactItem {
  display: grid;
  gap: 8px;
}

/* Footer */
.footer {
  padding: 42px 0 22px;
  border-top: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}
.footer__grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 980px) {
  .footer__grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
    gap: 22px;
  }
}
.brand--footer .brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 11px;
}
.footer__title {
  font-family: var(--font-display);
  font-weight: 900;
  margin: 0 0 10px;
}
.footer__links a {
  display: block;
  padding: 8px 0;
  color: rgba(12, 17, 24, 0.78);
  font-weight: 700;
}
.footer__links a:hover {
  color: rgba(12, 17, 24, 1);
}
.footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(12, 17, 24, 0.10);
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social__link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.60);
  box-shadow: var(--shadow-soft);
  color: rgba(12, 17, 24, 0.82);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease);
}
.social__link:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 163, 106, 0.55);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}
.modal.is-open {
  display: grid;
  place-items: center;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 24, 0.55);
}
.modal__dialog {
  position: relative;
  width: min(760px, calc(100% - 2 * var(--pad)));
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.30);
  padding: 18px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(12, 17, 24, 0.12);
  background: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

/* Toasts */
.toasts {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(380px, calc(100% - 32px));
}
.toast {
  border-radius: 18px;
  border: 1px solid rgba(12, 17, 24, 0.10);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 12px 12px;
  display: grid;
  gap: 4px;
  animation: toastIn 240ms var(--ease) both;
}
.toast__title {
  font-weight: 900;
  font-family: var(--font-display);
}
.toast__text {
  color: var(--muted);
  font-weight: 650;
  margin: 0;
}
.toast--success {
  border-color: rgba(201, 163, 106, 0.55);
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .propertyCard__media img,
  .card--link,
  .thumb,
  .toast {
    transition: none !important;
    animation: none !important;
  }
}


