*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #f5f2ed;
  --cream: #e8e3db;
  --accent: #c8ff00;
  --accent-dim: #a8d600;
  --gray-900: #1a1a1a;
  --gray-800: #252525;
  --gray-700: #333;
  --gray-500: #666;
  --gray-400: #888;
  --gray-300: #aaa;
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Onest', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- UTILITY --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- GRAIN OVERLAY --- */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 9999;
}

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,242,237,0.06);
  transition: all 0.4s ease;
}
.nav.scrolled { padding: 10px 0; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  gap: 16px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; gap: 32px; list-style: none; }
.nav__links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--white); }
.nav__phone {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__phone:hover { opacity: 0.8; }

/* Burger */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  z-index: 110;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Burger open state */
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 24px 40px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  color: var(--gray-300);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 12px 0;
  transition: color 0.2s;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(245,242,237,0.06);
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu a:hover, .nav__mobile-menu a:active { color: var(--accent); }
.nav__mobile-menu .nav__mobile-phone {
  margin-top: 24px;
  color: var(--accent);
  font-size: 1.6rem;
  border-bottom: none;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__bg::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero__content {
  position: relative;
  z-index: 2;
  background: #000000d6;
  padding: 20px !important;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.hero__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero__title span {
  display: block;
  background: linear-gradient(90deg, var(--white) 0%, var(--cream) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-300);
  max-width: 620px;
  font-weight: 300;
}
.hero__actions {
  display: flex; gap: 16px; align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,255,0,0.15); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,242,237,0.15);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: rgba(245,242,237,0.4); background: rgba(245,242,237,0.04); }

/* --- TICKER --- */
.ticker {
  padding: 20px 0;
  border-top: 1px solid rgba(245,242,237,0.06);
  border-bottom: 1px solid rgba(245,242,237,0.06);
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker__item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ticker__item .dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- LOTS CARDS --- */
.lots { padding: 100px 0 60px; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lots__header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.lots__panel { margin-top: 0; }
.lots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lots__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 20px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 300;
  background: var(--gray-900);
  border: 1px dashed rgba(245,242,237,0.1);
  border-radius: var(--radius);
}
.lot-card {
  background: var(--gray-900);
  border: 1px solid rgba(245,242,237,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lot-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.lot-card:hover { border-color: rgba(200,255,0,0.2); transform: translateY(-4px); }
.lot-card:hover::before { transform: scaleX(1); }
.lot-card__floor {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 16px;
}
.lot-card__area {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.lot-card__area small { font-size: 0.9rem; font-weight: 400; color: var(--gray-400); }
.lot-card__rate {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.lot-card__subrate {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-weight: 300;
}
.lot-card__rate + .lot-card__tags { margin-top: 14px; }
.lot-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.lot-card__tag {
  padding: 4px 10px;
  background: rgba(245,242,237,0.05);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 400;
}
.lot-card__photos {
  position: absolute; top: 16px; right: 16px;
  display: flex; align-items: center; gap: 4px;
  font-size: 0.7rem; color: var(--gray-500);
}
.lot-card__photos svg { width: 14px; height: 14px; opacity: 0.5; }

/* --- TAKE (INSIGHT BLOCK) --- */
.take {
  padding: 80px 0;
  border-top: 1px solid rgba(245,242,237,0.06);
}
.take__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.take__number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(200,255,0,0.08);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.take__text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cream);
  font-weight: 300;
  max-width: 520px;
}
.take__visual {
  display: flex; justify-content: center; align-items: center;
}
.take__icon-block {
  width: 280px; height: 280px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,242,237,0.06);
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-900);
  position: relative;
}
.take__icon-block svg {
  width: 64px; height: 64px;
  color: var(--accent);
  opacity: 0.6;
}
.take__icon-block--photo {
  padding: 0;
  overflow: hidden;
}
.take__icon-block--photo .take__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.take:nth-child(even) .take__inner { direction: rtl; }
.take:nth-child(even) .take__inner > * { direction: ltr; }

/* --- SPECS --- */
.specs { padding: 100px 0; border-top: 1px solid rgba(245,242,237,0.06); }
.specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(245,242,237,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-cell {
  background: var(--gray-900);
  padding: 28px;
}
.spec-cell__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 10px;
}
.spec-cell__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.spec-cell__value small { font-weight: 400; color: var(--gray-400); font-size: 0.85rem; }

/* --- TABLE --- */
.all-lots { padding: 100px 0; border-top: 1px solid rgba(245,242,237,0.06); }

.section-header--offers {
  align-items: flex-end;
}
@media (max-width: 768px) {
  .section-header--offers {
    align-items: flex-start;
  }
}

.offers-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.offers-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: transparent;
  color: var(--gray-400);
  border: 1px solid rgba(245,242,237,0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.offers-tab:hover {
  border-color: rgba(245,242,237,0.35);
  color: var(--white);
}
.offers-tab.is-active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.offers-panel { margin-top: 8px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lots-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.lots-table thead th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  font-weight: 500;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(245,242,237,0.1);
  white-space: nowrap;
  vertical-align: bottom;
}
.lots-table__unit {
  display: block;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 4px;
  white-space: normal;
}
.lots-table tbody td {
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(245,242,237,0.04);
  font-weight: 300;
}
.lots-table tbody tr { transition: all 0.2s; cursor: pointer; }
.lots-table tbody tr:hover { background: rgba(200,255,0,0.03); }
.lots-table .td-area {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}
.lots-table .td-rate { color: var(--accent); font-weight: 500; }

/* --- ANALYTICS --- */
.analytics { padding: 100px 0; border-top: 1px solid rgba(245,242,237,0.06); }
.analytics__card {
  background: var(--gray-900);
  border: 1px solid rgba(245,242,237,0.06);
  border-radius: var(--radius);
  padding: 48px;
}
.analytics__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.analytics__rate {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.analytics__rate small { display: block; font-size: 0.8rem; font-weight: 400; color: var(--gray-400); margin-top: 4px; }
.analytics__badge {
  padding: 8px 16px;
  background: rgba(200,255,0,0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.analytics__bars { display: flex; align-items: flex-end; gap: 6px; height: 160px; margin-bottom: 24px; }
.analytics__bar {
  flex: 1;
  background: rgba(245,242,237,0.08);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: all 0.3s;
  min-height: 8px;
}
.analytics__bar.active { background: var(--accent); }
.analytics__bar:hover { opacity: 0.8; }
.analytics__bar-label {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-size: 0.65rem; color: var(--gray-500); white-space: nowrap;
}
.analytics__bar-count {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; color: var(--gray-400); font-weight: 500;
}
.analytics__footer { margin-top: 48px; font-size: 0.8rem; color: var(--gray-500); }

/* --- BUILDING GALLERY --- */
.building-gallery {
  padding: 100px 0;
  border-top: 1px solid rgba(245,242,237,0.06);
}
.building-gallery .section-header {
  margin-bottom: 40px;
}
.building-gallery__slider.office-slider {
  border-radius: var(--radius);
}

/* --- INFRA --- */
.infra { padding: 100px 0; border-top: 1px solid rgba(245,242,237,0.06); }
.infra__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.infra__item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px;
  background: var(--gray-900);
  border: 1px solid rgba(245,242,237,0.06);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.infra__item:hover { border-color: rgba(200,255,0,0.15); }
.infra__item svg { width: 28px; height: 28px; color: var(--accent); opacity: 0.7; }
.infra__item span { font-size: 0.8rem; color: var(--gray-400); text-align: center; font-weight: 400; }

/* --- ROUTE --- */
.route { padding: 100px 0; border-top: 1px solid rgba(245,242,237,0.06); }
.route__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.route__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-300);
  font-weight: 300;
}
.route__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  background: var(--gray-800);
  border: 1px solid rgba(245,242,237,0.06);
}
.route__map iframe { width: 100%; height: 100%; border: none; display: block; }

/* --- CONTACTS --- */
.contacts {
  padding: 100px 0 60px;
  border-top: 1px solid rgba(245,242,237,0.06);
}
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contacts__info { display: flex; flex-direction: column; gap: 32px; }
.contacts__block-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-500); font-weight: 500; margin-bottom: 8px;
}
.contacts__block-value {
  font-size: 1.1rem; color: var(--cream); font-weight: 300;
}
.contacts__block-value a {
  color: var(--accent); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.contacts__block-value a:hover { opacity: 0.8; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form__field {
  background: var(--gray-900);
  border: 1px solid rgba(245,242,237,0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form__field::placeholder { color: var(--gray-500); }
.form__field:focus { border-color: var(--accent); }
textarea.form__field { resize: vertical; min-height: 100px; }
.form__consent { font-size: 0.75rem; color: var(--gray-500); line-height: 1.5; }
.form__consent a { color: var(--gray-400); }

.form__alert {
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin: 0;
}
.form__alert--ok {
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.25);
  color: var(--cream);
}
.form__alert--err {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.25);
  color: var(--gray-300);
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-400);
  font-weight: 300;
  cursor: pointer;
}
.form__checkbox-label a { color: var(--accent); text-decoration: none; }
.form__checkbox-label a:hover { opacity: 0.85; }
.form__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(245,242,237,0.06);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--gray-500);
  flex-wrap: wrap; gap: 16px;
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer__links a:hover { color: var(--gray-300); }

/* --- LEGAL / TEXT PAGES --- */
.legal-page {
  padding: 120px 0 80px;
  border-top: 1px solid rgba(245,242,237,0.06);
}
.legal-page__head {
  margin-bottom: 40px;
  max-width: 800px;
}
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.legal-page__updated {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 300;
}
.legal-prose {
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-300);
  font-weight: 300;
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.legal-prose p { margin: 0 0 1rem; }
.legal-prose ul, .legal-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-prose li { margin-bottom: 0.35rem; }
.legal-prose a { color: var(--accent); text-decoration: none; }
.legal-prose a:hover { opacity: 0.85; }
.legal-prose strong { color: var(--cream); font-weight: 500; }

.sitemap-nav__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sitemap-nav__list li {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid rgba(200, 255, 0, 0.35);
}

/* ================================================================
   MOBILE — TABLET  (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .lots__grid { grid-template-columns: repeat(2, 1fr); }
  .specs__grid { grid-template-columns: repeat(2, 1fr); }
  .take__inner { grid-template-columns: 1fr; gap: 40px; }
  .take__visual { display: none; }
  .take:nth-child(even) .take__inner { direction: ltr; }
  .route__content { grid-template-columns: 1fr; }
  .contacts__inner { grid-template-columns: 1fr; }
  .analytics__card { padding: 32px; }
}

/* ================================================================
   MOBILE  (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  /* Hide desktop phone in nav on very small screens, show in menu */
  .nav__phone { display: none; }

  /* Hero */
  .hero { min-height: 100svh; padding-bottom: 60px; }
  .hero__title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero__desc { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary { width: 100%; justify-content: center; }

  /* Sections spacing */
  .lots { padding: 72px 0 40px; }
  .specs, .all-lots, .analytics, .building-gallery, .infra, .route, .contacts { padding: 60px 0; }
  .take { padding: 56px 0; }

  /* Lots grid — 1 col */
  .lots__grid { grid-template-columns: 1fr; }

  /* Specs — 2 col */
  .specs__grid { grid-template-columns: 1fr 1fr; }
  .spec-cell { padding: 20px 16px; }
  .spec-cell__value { font-size: 1rem; }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-header .btn-secondary { width: 100%; justify-content: center; }

  /* Analytics */
  .analytics__card { padding: 20px 16px; }
  .analytics__rate { font-size: 1.5rem; }
  .analytics__footer { font-size: 0.72rem; }

  /* Infra */
  .infra__grid { grid-template-columns: repeat(3, 1fr); }

  /* Route map height */
  .route__map { min-height: 300px; }

  /* Contacts */
  .contacts { padding: 60px 0 40px; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* --- OFFICE DETAIL --- */
.office-page { padding-bottom: 40px; }
.office-breadcrumb {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.office-breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
}
.office-breadcrumb a:hover { color: var(--accent); }

.office-hero {
  padding: 120px 0 48px;
  border-bottom: 1px solid rgba(245,242,237,0.06);
}
.office-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 900px;
}
.office-hero__meta {
  margin: 0 0 28px;
  font-size: 1rem;
  color: var(--gray-400);
  font-weight: 300;
}
.office-hero__price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.office-hero__price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 600;
}
.office-hero__price-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 300;
}

.office-slider-section { padding: 48px 0 24px; }
.office-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245,242,237,0.08);
  background: var(--gray-900);
}
.office-slider__viewport { overflow: hidden; }
.office-slider__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.office-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
}
.office-slider__slide img {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  vertical-align: middle;
}
.office-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245,242,237,0.12);
  background: rgba(15,15,18,0.75);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.office-slider__btn:hover {
  background: rgba(200,255,0,0.15);
  border-color: rgba(200,255,0,0.3);
  color: var(--accent);
}
.office-slider__btn svg { width: 22px; height: 22px; }
.office-slider__btn--prev { left: 16px; }
.office-slider__btn--next { right: 16px; }

.office-slider__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px;
  flex-wrap: wrap;
}
.office-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(245,242,237,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.office-slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.office-specs { padding: 56px 0 24px; }
.office-desc {
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(245,242,237,0.06);
}
.office-desc__text {
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-300);
  font-weight: 300;
}

.office-contacts { padding-top: 80px; }

.lots-table__area-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  color: var(--accent);
}
.lots-table__area-link:hover { text-decoration: underline; }

/* ================================================================
   MOBILE XS  (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .specs__grid { grid-template-columns: 1fr; }
  .infra__grid { grid-template-columns: repeat(2, 1fr); }
  .analytics__bars { height: 120px; }
  .take__number { font-size: 4rem; }
  .legal-page { padding: 100px 0 60px; }
}
