:root {
  --display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --gold: #c8a45a;
  --gold-dark: #a9843f;
  --gold-soft: rgba(200, 164, 90, 0.14);
  --ink: rgba(59, 42, 31, 0.85);
  --ink-soft: #4a3728;
  --cream: #f7f3ea;
  --cream-deep: #efe8d8;
  --white: #ffffff;
  --muted: #5c4f43;
  --line: #e7e0d2;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px rgba(59, 42, 31, 0.12);
  --max: 1280px;
  /* Shared FAB geometry — back-top + chat/phone align on one axis */
  --fab-size: 60px;
  --fab-right: 22px;
  --fab-bottom: 22px;
  --fab-ring: 4px; /* matches .chat-fab .pulse inset */
  --fab-stack-gap: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

/* Numeric values: Manrope (--sans), never Didot/Bodoni (--display) */
.num {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
ul { list-style: none; }
.container { width: min(100% - 48px, var(--max)); max-width: 100%; margin-inline: auto; }

/* Top bar + header — Level-like */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar .container {
  display: flex; gap: 28px; align-items: center;
  padding: 8px 0; justify-content: space-between;
  min-width: 0; flex-wrap: wrap;
}
.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.office-label { color: var(--gold); font-weight: 700; margin-right: 2px; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 234, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  min-width: 0;
}
.logo {
  font-family: var(--display);
  font-size: 24px; font-weight: 700; letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
}
.logo-mark {
  width: 36px; height: 36px; border: 1.5px solid var(--ink);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
}
.logo span { color: var(--gold-dark); }
.nav { display: flex; gap: 16px; font-size: 13.5px; font-weight: 600; min-width: 0; }
.nav a { color: var(--muted); transition: color .2s; flex-shrink: 0; }
.nav a:hover, .nav a.active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; }
.header-phone { text-align: right; line-height: 1.2; }
.header-phone strong { display: block; font-size: 14px; white-space: nowrap; }
.header-phone small { color: var(--muted); font-size: 11px; }
.burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--white); cursor: pointer;
}
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); margin: 4px auto; }
.mobile-nav {
  display: grid; gap: 10px; padding-bottom: 16px; font-weight: 600;
}
.mobile-nav[hidden] { display: none !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 0;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--gold-dark); box-shadow: 0 10px 24px rgba(59,42,31,.18); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; box-shadow: 0 10px 24px rgba(200,164,90,.35); }
.btn-ghost {
  background: transparent; border: 1.5px solid rgba(255,255,255,.75); color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-line {
  background: transparent; border: 1.5px solid var(--ink); color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(59,42,31,.14); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { box-shadow: 0 10px 24px rgba(59,42,31,.16); }
.btn-sm { padding: 10px 16px; font-size: 12px; }

/* Hero Level layout */
.hero { padding: 28px 0 12px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
  width: 100%;
}
.hero-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 3840 / 2161;
  width: 100%;
  min-width: 0;
  min-height: 0;
}
.hero-media {
  position: absolute; inset: -8% 0;
  will-change: transform;
  transition: transform .1s linear;
}
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(59,42,31,.78) 0%, rgba(59,42,31,.28) 55%, rgba(59,42,31,.16) 100%);
  pointer-events: none;
}
.hero-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; color: #fff;
}
.badge-live {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content; background: var(--gold); color: var(--ink);
  padding: 7px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.badge-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink);
  animation: pulse 1.5s infinite;
}
.badge-live.badge-white {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.85);
}
.badge-live.badge-white i { background: #fff; }
@keyframes pulse { 50% { opacity: .3; } }
.hero-copy h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 4.8vw, 64px); line-height: 1.02; max-width: 12ch;
  margin-bottom: 12px; color: #fff;
}
.hero-copy p { max-width: 42ch; color: rgba(255,255,255,.88); margin-bottom: 22px; font-size: 15px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 6px 10px; color: #fff;
  font-family: var(--sans); font-size: 14px; line-height: 1.3;
}
.hero-stat {
  display: inline-flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.hero-stat-sep {
  opacity: .55; font-weight: 400; user-select: none;
}
.hero-stats strong {
  display: inline; font-family: var(--sans); font-size: 15px; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.hero-stats .hero-stat > span {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .8;
}
@media (max-width: 460px) {
  .hero-stats { gap: 4px 8px; font-size: 13px; }
  .hero-stats strong { font-size: 14px; }
}

.hero-side {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  align-self: stretch;
}
.hero-pkg {
  position: relative;
  display: block;
  flex: 1 1 auto;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.hero-pkg .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left 42%;
  background-repeat: no-repeat;
  transition: transform .6s ease;
}
.hero-pkg:hover .bg { transform: scale(1.04); }
.hero-pkg .shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(59,42,31,.1) 0%, rgba(59,42,31,.38) 46%, rgba(59,42,31,.9) 100%);
}
.hero-pkg:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}
.hero-pkg-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero-pkg-copy h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
  max-width: 100%;
  margin-bottom: 20px;
  color: #fff;
  overflow-wrap: break-word;
  word-break: normal;
}
.hero-pkg-copy .btn { align-self: flex-start; }
.side-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 0;
  background: var(--ink-soft); color: #fff;
  display: block; height: 100%; text-decoration: none; cursor: pointer;
}
.side-card .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.side-card:hover .bg { transform: scale(1.06); }
.side-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,42,31,.18), rgba(59,42,31,.82));
}
.side-card .txt {
  position: relative; z-index: 2; height: 100%; padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.side-card h3 { font-family: var(--display); font-size: 20px; font-weight: 600; }
.side-card p { font-size: 12.5px; opacity: .85; margin-top: 4px; }
.side-arrow {
  align-self: flex-end; width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--ink); display: grid; place-items: center;
  font-size: 16px; font-weight: 700;
}
.side-card.featured-sale .txt h3,
.side-card.featured-sale .txt p { color: #fff; }
.side-card.featured-sale .txt p { opacity: 1; }

/* Section heads */
.section { padding: 72px 0; }
#plans, #tools, #calculator, #quiz, #projects, #roomtour, #design, #about-complex, #sale, #citizenship,
#about, #location, #lobby, #floor, #studio, #fitness, #invest { scroll-margin-top: 96px; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; max-width: 16ch;
}
.section-head-solo { display: block; }
.section-head-solo > div { max-width: none; width: 100%; }
.section-head-solo h2 { max-width: none; }
.port-title-dash { font-weight: 800; }
.section-head p { color: var(--muted); max-width: 40ch; font-size: 15px; }
.eyebrow {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 800; margin-bottom: 10px;
}

/* Tools: calculator + plans — equal-height cards, bottoms aligned */
.tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}
.tools-grid > .panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.tools-grid > #plans .floor-panel {
  flex: 1 1 auto;
  min-height: 0;
}
.tools-grid > #plans .floor-plan-thumb {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.tools-grid > #plans .floor-plan-thumb img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.panel h3 {
  font-family: var(--display); font-size: 28px; font-weight: 600; margin-bottom: 8px;
}
.panel > .lead { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

.calc-range label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.calc-range input[type=range] { width: 100%; accent-color: var(--gold-dark); }
.calc-price {
  font-family: var(--sans); font-size: 34px; font-weight: 800; margin: 8px 0 18px;
}
.calc-months { display: flex; gap: 8px; margin-bottom: 16px; }
.calc-months button {
  flex: 1; padding: 10px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; cursor: pointer; font-weight: 700; font-size: 13px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.calc-months button:hover {
  border-color: var(--gold); transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(59,42,31,.08);
}
.calc-months button:focus-visible {
  outline: 2px solid var(--gold-dark); outline-offset: 2px;
}
.calc-months button.active { border-color: var(--gold-dark); background: var(--gold); }
.calc-rows { display: grid; gap: 0; margin-bottom: 18px; }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 14px;
}
.calc-row:last-child { border-bottom: 0; }
.calc-row span { color: var(--muted); }
.calc-row strong { font-family: var(--sans); font-size: 20px; font-weight: 800; }
.calc-note { font-size: 12px; color: var(--muted); line-height: 1.5; }
.calc-offer {
  margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--cream); border: 1px solid var(--line);
}
.tools-grid > #calculator .calc-bottom {
  margin-top: auto;
  padding-top: 18px;
}
.tools-grid > #calculator .calc-bottom .calc-offer { margin-top: 0; }
.tools-grid > #calculator .calc-bottom .btn {
  width: 100%;
  margin-top: 16px;
}
.calc-offer-title { font-weight: 800; font-size: 13.5px; margin-bottom: 6px; color: var(--ink); }
.calc-offer-sub { font-size: 12px; color: var(--muted); margin: 0 0 10px; }
.calc-offer-list { margin: 0 0 6px; padding-left: 16px; }
.calc-offer-list li { font-size: 12.5px; color: var(--muted); line-height: 1.5; list-style: disc; }
.calc-offer-note { font-size: 12px; color: var(--gold-dark); font-weight: 700; }
.calc-offer-tapu {
  font-size: 12.5px; color: var(--ink); line-height: 1.55; margin: 0;
  font-weight: 600;
}
.offer-table-wrap { overflow-x: auto; margin-bottom: 4px; }
.offer-table {
  width: 100%; border-collapse: collapse; font-size: 11px; min-width: 320px;
}
.offer-table th,
.offer-table td {
  border-bottom: 1px solid var(--line);
  padding: 8px 6px; text-align: left; vertical-align: top; line-height: 1.35;
}
.offer-table th {
  color: var(--ink); font-weight: 800; font-size: 10.5px;
  background: rgba(200,164,90,.12);
}
.offer-table td { color: var(--muted); }
.offer-table td:first-child,
.offer-table th:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.plan-card {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px; cursor: pointer; background: var(--cream);
  transition: border-color .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
  text-align: left; width: 100%;
  overflow: hidden;
}
.plan-card:hover {
  border-color: var(--gold-dark); transform: translateY(-4px) scale(1.015);
  background: #fff; box-shadow: 0 16px 32px rgba(59,42,31,.12);
}
.plan-card:focus-visible {
  outline: 2px solid var(--gold-dark); outline-offset: 2px;
}
.plan-card .rooms {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 800; margin-bottom: 6px;
}
.plan-card h4 { font-family: var(--sans); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.plan-card .area { font-size: 13px; color: var(--muted); }
.plan-card .price {
  margin-top: 12px; font-weight: 800; font-size: 14px;
  color: var(--ink); transition: color .25s ease, transform .25s ease;
  display: inline-block;
}
.plan-card:hover .price {
  color: var(--gold-dark);
  transform: translateX(2px);
}

/* Projects grid */
.projects-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px;
}
.project-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-soft); color: #fff; min-height: 280px;
  display: block; border: 1px solid transparent;
}
.project-card.is-static { cursor: default; }
.project-card.featured { grid-row: span 2; min-height: 100%; }
.project-card .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.project-card:hover .bg { transform: scale(1.05); }
.project-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,42,31,.08) 20%, rgba(59,42,31,.88) 100%);
}
.project-card.featured .shade {
  background: linear-gradient(180deg, rgba(59,42,31,.1) 15%, rgba(59,42,31,.9) 100%);
}
.project-card .body {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.card-stock {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 32px);
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(59, 42, 31, .22);
  animation: cardStockGlow 2.2s ease-in-out infinite;
}
.card-stock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
.card-stock--park {
  align-items: flex-start;
  border-radius: 18px;
  padding: 9px 14px 9px 12px;
  max-width: min(270px, calc(100% - 28px));
}
.card-stock--park i { margin-top: 4px; }
.card-stock-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.card-stock-text span:last-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  opacity: .72;
}
@keyframes cardStockGlow {
  0%, 100% { box-shadow: 0 8px 20px rgba(59, 42, 31, .22), 0 0 0 0 rgba(200, 164, 90, .4); }
  50% { box-shadow: 0 10px 26px rgba(59, 42, 31, .3), 0 0 0 8px rgba(200, 164, 90, .14); }
}
.project-card .status {
  display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px; background: rgba(255,255,255,.16);
}
.project-card .status.sale { background: var(--gold); color: var(--ink); }
.project-card h3 { font-family: var(--display); font-size: 28px; font-weight: 600; }
.project-card.featured h3 { font-size: clamp(32px, 3vw, 42px); }
.project-card .meta { font-size: 13.5px; opacity: .88; margin: 8px 0 16px; max-width: 38ch; }
.project-card .facts { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.project-card .facts strong { display: block; font-family: var(--sans); font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.project-card .facts span { font-size: 11px; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.project-card .facts-line {
  display: block;
  margin: 0 0 16px;
  max-width: 52ch;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  opacity: .9;
  font-variant-numeric: tabular-nums;
}
.project-links { display: flex; gap: 8px; flex-wrap: wrap; }

.projects-grid-top { grid-template-columns: 1.4fr 1fr; }
.projects-grid-top .project-card.featured { grid-row: auto; min-height: 520px; }
.projects-pinned { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.projects-pinned .project-card { min-height: 252px; }

.projects-group-label {
  margin: 8px 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.projects-group-label + .projects-grid { margin-top: 0; }
.projects-grid-live {
  grid-template-columns: 1fr 1fr;
}
.projects-grid-live .project-card.featured {
  grid-row: auto;
  min-height: 420px;
}
.projects-grid-live .project-card.featured h3 {
  font-size: clamp(28px, 2.6vw, 36px);
}
.projects-grid-done {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}
.projects-grid-done .project-card { min-height: 240px; }
.projects-grid-done .project-card h3 { font-size: 22px; }
.project-card .status.leftover {
  background: var(--gold);
  color: var(--ink);
}
.projects-carousel-wrap {
  position: relative;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}
.projects-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-carousel::-webkit-scrollbar { display: none; }
.projects-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(59, 42, 31, 0.08);
  transition: background .2s, color .2s, border-color .2s;
}
.projects-nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.projects-nav:disabled {
  opacity: .35;
  cursor: default;
}
.projects-nav:disabled:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.project-card-sm {
  position: relative; flex: 0 0 260px; min-height: 220px; border-radius: var(--radius);
  overflow: hidden; background: var(--ink-soft); color: #fff; scroll-snap-align: start;
}
.project-card-sm .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.project-card-sm:hover .bg { transform: scale(1.06); }
.project-card-sm .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(59,42,31,.1) 30%, rgba(59,42,31,.88)); }
.project-card-sm .body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.project-card-sm h3 { font-family: var(--display); font-size: 19px; font-weight: 600; }
.project-card-sm .meta { font-size: 12px; opacity: .85; margin-top: 4px; }
.project-card-sm .status {
  display: inline-flex; width: fit-content; padding: 5px 9px; border-radius: 999px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px; background: rgba(255,255,255,.16);
}
@media (max-width: 1100px) {
  .projects-grid-top { grid-template-columns: 1fr; }
  .projects-grid-top .project-card.featured { min-height: 360px; }
  .projects-pinned { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .projects-grid-live { grid-template-columns: 1fr; }
  .projects-grid-live .project-card.featured { min-height: 340px; }
  .projects-grid-done { grid-template-columns: 1fr 1fr; }
  .trust-strip-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .projects-pinned { grid-template-columns: 1fr; }
  .projects-carousel-wrap { grid-template-columns: 36px 1fr 36px; gap: 6px; }
  .projects-nav { width: 36px; height: 36px; font-size: 20px; }
  .project-card-sm { flex-basis: 220px; min-height: 200px; }
  .projects-grid-done { grid-template-columns: 1fr; }
}

/* Map */
.map-shell {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 16px;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--white); min-height: 480px;
}
.map-aside { padding: 28px; display: flex; flex-direction: column; gap: 10px; max-height: 560px; overflow-y: auto; }
.map-aside h3 { font-family: var(--display); font-size: 28px; font-weight: 600; margin-bottom: 6px; }
.map-aside > p { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.map-item {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 14px; border-radius: 14px; border: 1px solid var(--line);
  cursor: pointer; text-align: left; background: var(--cream); width: 100%;
  transition: border-color .2s, background .2s;
}
.map-item:hover, .map-item.active {
  border-color: var(--gold-dark); background: #fff;
}
.map-item strong { display: block; font-size: 14px; }
.map-item span { font-size: 12px; color: var(--muted); }
.map-item .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--muted); flex-shrink: 0;
}
.map-item .dot.sale { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
#sesMap {
  min-height: 480px; background: #d8d2c4;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ses-gmap-label {
  background: rgba(247, 243, 234, 0.94) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  padding: 3px 8px !important;
  white-space: nowrap !important;
  box-shadow: 0 6px 14px rgba(59, 42, 31, 0.12) !important;
  font-family: var(--sans) !important;
}
.ses-gmap-label.sale {
  border-color: var(--gold) !important;
  color: var(--ink) !important;
}
.ses-gmap-info {
  display: grid;
  gap: 4px;
  font-family: var(--sans);
  color: var(--ink);
  min-width: 140px;
}
.ses-gmap-info strong {
  font-family: var(--display);
  font-size: 15px;
}
.ses-gmap-info span {
  font-size: 12px;
  color: var(--muted);
}

/* Blog — horizontal strip (5-across feel, scroll for more cards) */
.blog-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.blog-grid::-webkit-scrollbar { display: none; }
.blog-card {
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 200px;
  border-radius: var(--radius); overflow: hidden; min-height: 300px;
  position: relative; color: #fff; display: block; background: var(--ink-soft);
  scroll-snap-align: start;
}
.blog-card .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.blog-card:hover .bg { transform: scale(1.06); }
.blog-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(59,42,31,.9));
}
.blog-card .txt {
  position: relative; z-index: 2; height: 100%; padding: 18px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.blog-card .tag {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  opacity: .8; margin-bottom: 8px; font-weight: 700;
}
.blog-card h3 { font-family: var(--display); font-size: 20px; font-weight: 600; line-height: 1.25; margin: 0; }
.blog-card .lead {
  margin: 8px 0 0; font-size: 13px; line-height: 1.4; opacity: 0;
  max-height: 0; overflow: hidden; transition: opacity .25s ease, max-height .25s ease;
}
.blog-card:hover .lead,
.blog-card:focus-visible .lead {
  opacity: .88; max-height: 4.2em;
}
@media (hover: none) {
  .blog-card .lead {
    opacity: .82; max-height: 4.2em;
  }
}

/* Documents */
.docs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.doc-item {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.doc-item:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.doc-item strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.doc-item span { font-size: 12px; color: var(--muted); }
.doc-ext {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  color: var(--gold-dark); text-transform: uppercase;
  padding: 8px 10px; border-radius: 10px; background: var(--gold-soft);
}
.doc-ico {
  flex: 0 0 44px; width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark);
}
.doc-ico svg { width: 22px; height: 22px; display: block; }

/* Quiz */
.quiz {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 36px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px;
}
.quiz h2 { font-family: var(--display); font-size: clamp(28px, 3vw, 40px); font-weight: 600; margin: 10px 0 12px; }
.quiz .lead { color: rgba(255,255,255,.72); max-width: 36ch; }
.quiz-progress {
  display: flex; gap: 6px; margin: 24px 0 8px;
}
.quiz-progress i {
  height: 4px; flex: 1; border-radius: 4px; background: rgba(255,255,255,.18);
}
.quiz-progress i.on { background: var(--gold); }
.quiz-panel h4 { font-size: 18px; margin-bottom: 16px; font-weight: 600; }
.quiz-options { display: grid; gap: 10px; }
.quiz-opt {
  text-align: left; padding: 14px 16px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04);
  color: #fff; cursor: pointer; transition: .2s;
}
.quiz-opt:hover, .quiz-opt.active {
  border-color: var(--gold); background: rgba(200,164,90,.12);
}
.quiz-result { display: none; }
.quiz-result.show { display: block; }
.quiz-result .rec {
  margin-top: 12px; padding: 18px; border-radius: 16px;
  background: rgba(200,164,90,.12); border: 1px solid rgba(200,164,90,.35);
}
.quiz-result .rec strong {
  display: block; font-family: var(--display); font-size: 26px; color: var(--gold); margin-bottom: 6px;
}

/* Footer */
.footer {
  background: var(--ink); color: #cfc9bd; padding: 64px 0 36px; margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px;
}
.footer strong {
  display: block; color: #fff; font-family: var(--display);
  font-size: 18px; font-weight: 600; margin-bottom: 14px;
}
.footer a { display: block; padding: 4px 0; color: #cfc9bd; }
.footer a:hover { color: var(--gold); }
.footer .is-static { display: block; padding: 4px 0; color: #cfc9bd; cursor: default; }
.footer-socials { display: flex; gap: 8px; margin-top: 12px; align-items: center; }
.footer-socials .social-ico {
  width: 34px; height: 34px; padding: 0; line-height: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #cfc9bd;
}
.footer-socials .social-ico svg { width: 15px; height: 15px; display: block; }
.footer-bottom {
  border-top: 1px solid #5a4636; padding-top: 20px;
  font-size: 12px; color: #8a8478;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 20000;
  background: rgba(59,42,31,.62); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: 24px; width: min(560px, 100%);
  max-height: min(90vh, 720px); overflow: auto;
  padding: 28px; position: relative;
  transform: translateY(16px) scale(.98); transition: transform .25s;
}
.modal.wide { width: min(560px, 100%); max-height: min(92vh, 860px); }
.modal-backdrop.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 16px; border: 0; background: var(--cream);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 20px; color: var(--muted);
}
.modal h3 { font-family: var(--display); font-size: 28px; font-weight: 600; margin-bottom: 8px; padding-right: 36px; }
.modal .sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.modal-facts-line {
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
}
.modal-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px;
}
.modal-facts div {
  background: var(--cream); border-radius: 12px; padding: 12px 14px;
}
.modal-facts strong { display: block; font-family: var(--sans); font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.modal-facts span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.modal form { display: grid; gap: 10px; }
.modal input, .modal select, .modal textarea {
  padding: 13px 14px; border-radius: 12px; border: 1.5px solid var(--line);
}
.modal input:focus, .modal select:focus, .modal textarea:focus {
  outline: none; border-color: var(--gold-dark);
}
.modal .plan-schema {
  height: 160px; border-radius: 16px; margin-bottom: 16px;
  background:
    linear-gradient(90deg, transparent 24%, var(--line) 24% 25%, transparent 25%),
    linear-gradient(var(--cream-deep), var(--cream));
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); font-size: 13px;
}

/* PDF presentation modal */
.pdf-modal-backdrop { z-index: 21000 !important; }
.pdf-modal {
  width: min(960px, 100%);
  max-height: min(94vh, 920px);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(59, 42, 31, .28);
}
.pdf-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-right: 44px;
}
.pdf-modal-head h3 {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  padding-right: 0;
}
.pdf-modal-drive {
  flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
}
.pdf-modal-frame-wrap {
  flex: 1;
  min-height: min(68vh, 640px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}
.pdf-modal-frame-wrap iframe {
  display: block;
  width: 100%;
  height: min(68vh, 640px);
  border: 0;
  background: #fff;
}
@media (max-width: 640px) {
  .pdf-modal { padding: 16px; border-radius: 18px; }
  .pdf-modal-frame-wrap,
  .pdf-modal-frame-wrap iframe { min-height: 58vh; height: 58vh; }
}

/* Map modal reuses pdf-modal layout */
.map-modal .pdf-modal-frame-wrap iframe { background: #e8e4dc; }

/* Project landing pages */
.project-hero {
  min-height: 78vh; position: relative; color: #fff;
  display: flex; align-items: flex-end; border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden; margin: 0 24px;
}
.project-hero .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.project-hero .bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.project-hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,42,31,.22), rgba(59,42,31,.88));
}
.project-hero .content {
  position: relative; z-index: 2; width: min(100% - 48px, var(--max));
  margin: 0 auto; padding: 56px 0;
}
.project-hero h1 {
  font-family: var(--display); font-size: clamp(42px, 6vw, 72px); font-weight: 600; line-height: 1;
  margin: 12px 0 14px;
}
.project-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.feature {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px;
}
.feature strong {
  display: block; font-family: var(--sans); font-size: 28px; font-weight: 800; color: var(--gold-dark);
  margin-bottom: 4px; font-variant-numeric: tabular-nums;
}
.feature span { font-size: 13px; color: var(--muted); }
.split-2 {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center;
}
.split-2 .media {
  border-radius: var(--radius); min-height: 360px; background-size: cover; background-position: center;
}
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.amenity-list li {
  padding: 12px 14px; border-radius: 12px; background: var(--white);
  border: 1px solid var(--line); font-size: 14px;
}

/* Single mobile sticky: price + WhatsApp */
.sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  background: rgba(59, 42, 31, .96);
  backdrop-filter: blur(10px);
  padding: 12px 14px; gap: 12px;
  align-items: center; justify-content: space-between;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(59,42,31,.32);
}
.sticky-cta .price {
  color: #fff; font-size: 12px; line-height: 1.25;
}
.sticky-cta .price strong {
  display: block; color: var(--gold); font-family: var(--sans);
  font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums;
}
.sticky-cta .btn { flex-shrink: 0; }

@media (max-width: 1180px) {
  .nav, .header-phone { display: none; }
  .burger { display: grid; place-items: center; }
}
@media (max-width: 1100px) {
  .blog-card { flex-basis: calc((100% - 28px) / 3); min-width: 180px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: 1 / -1; grid-row: auto; min-height: 360px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .header-phone, .topbar { display: none; }
  .burger { display: grid; place-items: center; }
  .header-actions .btn { display: none; }
  .hero-grid, .tools-grid, .map-shell, .quiz, .split-2, .footer-grid { grid-template-columns: 1fr; }
  .hero-side {
    height: auto;
    min-height: auto;
  }
  .hero-pkg { min-height: 340px; }
  .hero-pkg-copy { padding: 24px 22px 26px; }
  .side-card { min-height: 160px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .blog-card { flex-basis: calc((100% - 14px) / 2); min-width: 160px; min-height: 260px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 88px; }
  .project-hero { margin: 0 12px; }
  .chat-fab { display: none !important; }
  .chat-panel { bottom: 96px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero-side, .projects-grid, .plans-grid, .feature-grid, .amenity-list, .modal-facts {
    grid-template-columns: 1fr;
  }
  .blog-card { flex-basis: 78%; min-width: 220px; min-height: 240px; }
  .hero-pkg { min-height: 300px; }
  .side-card { min-height: 140px; }
}


/* ===== Brand logo ===== */
.logo-img { height: 42px; width: auto; display: block; }
.logo { gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-family: var(--display); font-size: 18px; font-weight: 700; }
.logo-text small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-family: var(--sans); font-weight: 700; }

/* Language switcher */
.lang-switch {
  display: flex; gap: 2px; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px;
}
.lang-switch button {
  border: 0; background: transparent; padding: 6px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--muted); cursor: pointer;
}
.lang-switch button.active { background: var(--ink); color: #fff; }

/* Fix: map must not cover modals / chat */
.map-shell { position: relative; z-index: 1; isolation: isolate; }
#sesMap { z-index: 1; position: relative; }
.modal-backdrop { z-index: 20000 !important; }
.chat-root {
  position: fixed; inset: 0; z-index: 15000;
  pointer-events: none;
}
.chat-root .chat-fab { pointer-events: auto; }
.chat-root .chat-panel { pointer-events: none; }
.chat-root .chat-panel.open { pointer-events: auto; }

/* Plan card thumbs — unified photo format */
.plan-card .thumb {
  height: 110px; border-radius: 12px; margin-bottom: 12px;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s ease;
}
.plan-card:hover .thumb {
  transform: scale(1.06);
}
.plan-card[data-plan="p7"] .thumb,
.plan-card .thumb {
  height: 110px;
}

/* 3D viewer mock */
.viewer-3d {
  position: relative; height: 240px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(145deg, #5a4636, var(--ink)); margin-bottom: 16px;
  cursor: grab; user-select: none; touch-action: none;
}
.viewer-3d:active { cursor: grabbing; }
.viewer-3d .stage {
  position: absolute; inset: 0; display: grid; place-items: center;
  perspective: 900px;
}
.viewer-3d .room {
  width: 70%; height: 70%; position: relative;
  transform-style: preserve-3d; transition: transform .05s linear;
}
.viewer-3d .face {
  position: absolute; inset: 0; border-radius: 8px; background-size: cover; background-position: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,.25);
  backface-visibility: hidden;
}
.viewer-3d .face.front { transform: translateZ(80px); }
.viewer-3d .face.back { transform: rotateY(180deg) translateZ(80px); }
.viewer-3d .face.left { transform: rotateY(-90deg) translateZ(80px); }
.viewer-3d .face.right { transform: rotateY(90deg) translateZ(80px); }
.viewer-3d .hint {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(59,42,31,.72); color: #fff; font-size: 11px; font-weight: 700;
  padding: 7px 10px; border-radius: 999px; letter-spacing: .04em;
}
.viewer-3d .badge360 {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 800;
  padding: 6px 10px; border-radius: 999px; letter-spacing: .08em;
}

/* Design / interiors tour */
.tour {
  border-radius: var(--radius); overflow: hidden; background: var(--ink); color: #fff;
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 420px;
}
.tour-gallery { position: relative; min-height: 360px; overflow: hidden; }
.tour-track {
  display: flex; height: 100%; transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.tour-slide {
  min-width: 100%; height: 100%; background-size: cover; background-position: center;
}
.tour-nav {
  position: absolute; inset: 0 16px; display: flex; justify-content: space-between;
  align-items: center; gap: 8px; pointer-events: none; z-index: 3;
}
.tour-nav button {
  pointer-events: auto; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92);
  color: var(--ink); font-size: 18px; cursor: pointer; font-weight: 700;
}
.tour-dots { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.tour-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
.tour-dots i.on { background: var(--gold); }
.tour-copy { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.tour-copy h2 { font-family: var(--display); font-size: clamp(28px,3vw,40px); font-weight: 600; margin: 10px 0 14px; }
.tour-copy p { color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 18px; }
.tour-rooms { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tour-rooms button {
  border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff;
  padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer;
}
.tour-rooms button.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.park-design-head { text-align: center; }
.park-design-head h2 { max-width: none; margin-inline: auto; }
.tour--wide {
  display: block;
  background: transparent;
  color: inherit;
  min-height: 0;
  border-radius: 0;
  overflow: visible;
}
.tour--wide .tour-gallery {
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  width: min(100%, calc(640px * 16 / 9));
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a120e;
}
.tour--wide .tour-track,
.tour--wide .tour-slide { height: 100%; }
/* Koru II design photos are 4:3 content letterboxed in 16:9 files */
.tour--wide.tour--koru2 .tour-gallery {
  aspect-ratio: 4 / 3;
  max-height: 720px;
  width: min(100%, calc(720px * 4 / 3));
}
.tour--wide.tour--koru2 .tour-slide {
  background-size: cover;
  background-position: center;
}
.park-design-cta {
  margin-top: 24px;
  text-align: center;
}
.park-design-cta .btn {
  min-width: min(100%, 340px);
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}

.park-retail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.park-retail-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  margin: 8px 0 16px;
  line-height: 1.15;
}
.park-retail-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.park-retail-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.park-retail-list li {
  position: relative;
  padding: 12px 16px 12px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.park-retail-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.park-retail-carousel { min-width: 0; }
.park-retail-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.park-retail-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.park-retail-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #f7f2ea;
  cursor: zoom-in;
}
.park-retail-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.park-retail-slide span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  z-index: 2;
}
.park-retail-nav {
  position: absolute;
  inset: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}
.park-retail-nav button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(59,42,31,.16);
}
.park-retail-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.park-retail-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59,42,31,.28);
  cursor: pointer;
}
.park-retail-dots i.on { background: var(--gold-dark); }

.marine-loc-shot {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  width: 100%;
  min-height: 320px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  margin-bottom: 14px;
}
.marine-loc-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.marine-plan-carousel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.marine-plan-viewport {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.marine-plan-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.marine-plan-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
  text-align: left;
}
.marine-plan-slide img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}
.marine-plan-slide span {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.marine-plan-nav {
  position: absolute;
  inset: 0 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}
.marine-plan-nav button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(59,42,31,.16);
}
.marine-plan-dots {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.marine-plan-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59,42,31,.28);
  cursor: pointer;
}
.marine-plan-dots i.on { background: var(--gold-dark); }

.marine-sale-intro { max-width: 68ch; margin-bottom: 14px; }
.marine-sale-intro h1,
.marine-sale-intro h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  margin: 6px 0 8px;
  line-height: 1.15;
}
.marine-sale-intro h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 6px 0 12px;
}
.marine-sale-intro p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14.5px;
  margin: 0;
}
.marine-sale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.marine-sale-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.marine-sale-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f7f2ea;
}
.marine-sale-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.marine-sale-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #f7f2ea;
  cursor: zoom-in;
}
.marine-sale-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.marine-sale-nav {
  position: absolute;
  inset: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}
.marine-sale-nav button {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(59,42,31,.16);
}
.marine-sale-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.marine-sale-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59,42,31,.28);
  cursor: pointer;
}
.marine-sale-dots i.on { background: var(--gold-dark); }
.marine-sale-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.marine-sale-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.marine-sale-type {
  display: inline-flex;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.marine-sale-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.marine-sale-meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.marine-sale-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 3px;
}
.marine-sale-list li {
  position: relative;
  padding: 0 0 0 14px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.marine-sale-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.marine-sale-price {
  margin-top: 4px;
  padding-top: 0;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}
.marine-sale-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.marine-sale-docs .btn {
  flex: 1 1 calc(50% - 4px);
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
}
.marine-sale-docs .btn:only-child { flex-basis: 100%; }
.antares-sale {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}
.antares-sale-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.antares-sale-copy .eyebrow { margin-bottom: 0; }
.antares-sale-copy h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.antares-sale-copy .marine-sale-meta {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.antares-sale-lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}
.antares-sale-copy .marine-sale-list {
  gap: 10px;
  margin: 2px 0 0;
}
.antares-sale-copy .marine-sale-list li {
  font-size: 14.5px;
  line-height: 1.65;
  padding-left: 16px;
}
.antares-sale-copy .marine-sale-price {
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: .03em;
}
.antares-sale-terms {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.antares-sale-actions {
  margin-top: auto;
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.antares-sale .marine-sale-cta { margin-top: 0; }
.star-sale-stack { display: grid; gap: 28px; }
.antares-sale-carousel {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
/* STAR sale: keep A63/A54/A7 compact — portrait photos must not stretch the row */
.star-sale-stack .antares-sale {
  align-items: start;
}
.star-sale-stack .antares-sale-copy {
  height: auto;
  align-self: start;
}
.star-sale-stack .antares-sale-actions {
  margin-top: 0;
}
.star-sale-stack .antares-sale-carousel {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  align-self: start;
}
.star-sale-stack .antares-sale-carousel .marine-sale-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#citizenship .star-sale-stock {
  margin-top: 32px;
}
.star-sale-stock {
  margin-top: 28px;
  background: linear-gradient(180deg, var(--cream), var(--cream-deep));
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  text-align: center;
}
.pkg-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-top: 6px;
}
.pkg-price-old {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
  letter-spacing: 0;
  text-transform: none;
}
.pkg-price-now {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}
.pkg-price-note {
  margin: 0;
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 700;
  line-height: 1.45;
}
.pkg-credit {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.pkg-hero .bg {
  background-position: 18% 42%;
}
.pkg-hero .shade {
  background:
    linear-gradient(270deg, rgba(59,42,31,.62) 0%, rgba(59,42,31,.22) 48%, rgba(59,42,31,.06) 100%),
    linear-gradient(180deg, rgba(59,42,31,.12) 0%, rgba(59,42,31,.66) 100%);
}
.pkg-hero h1 {
  max-width: 16ch;
}
@media (min-width: 901px) {
  .pkg-hero .bg {
    background-position: 40% 42%;
  }
  .pkg-hero .content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .pkg-hero .project-hero-actions {
    justify-content: flex-end;
  }
}
.pkg-intro {
  max-width: 72ch;
  margin-bottom: 8px;
}
.pkg-intro .lead { margin-top: 8px; }
.pkg-intro-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}
.pkg-intro-list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.pkg-intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.pkg-download[aria-disabled="true"] {
  pointer-events: none;
  opacity: .72;
}
.star-sale-stock-text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.antares-plan-shot {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 320px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
}
.antares-plan-shot img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}
.antares-plan-shot span {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  background: var(--cream);
  border-top: 1px solid var(--line);
  text-align: left;
  color: var(--ink);
}
.marine-sale-cta {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
}
.tools-grid > #location > .btn {
  width: 100%;
  margin-top: auto;
}

.design-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.design-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a120e;
}
.design-video img,
.design-video iframe,
.design-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
/* About / trust / citizenship strips */
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: stretch;
}
.about-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
}
.about-card h3 { font-family: var(--display); font-size: 28px; font-weight: 600; margin: 8px 0 12px; }
.about-card p { color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px;
}
.trust-strip-5 { grid-template-columns: repeat(5, 1fr); }
.trust-item {
  background: var(--cream); border-radius: 14px; padding: 18px;
}
.trust-item strong { display: block; font-family: var(--sans); font-size: 28px; font-weight: 800; color: var(--gold-dark); font-variant-numeric: tabular-nums; }
.trust-item span { font-size: 12px; color: var(--muted); }

.about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-stats .trust-item {
  background: transparent;
  border-radius: 0;
  padding: 22px 12px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.about-stats .trust-item:last-child { border-right: 0; }
.about-stats .trust-item strong {
  white-space: nowrap;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.about-stats .trust-unit {
  font-size: .52em;
  font-weight: 800;
  letter-spacing: 0;
  margin-left: .12em;
}
.about-stats .trust-item span {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  text-wrap: balance;
}

/* SES MANSION / STAR — about the complex */
.mansion-about-grid,
.star-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.mansion-about-copy h2,
.star-about-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  margin: 8px 0 16px;
  line-height: 1.15;
}
.mansion-about-copy p,
.star-about-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.mansion-about-copy p strong,
.mansion-about-copy p .num,
.star-about-copy p strong,
.star-about-copy p .num {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.mansion-about-actions,
.star-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.mansion-about-facts,
.star-about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mansion-about-facts .feature,
.star-about-facts .feature {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SES STAR — floor plans (controls left, large plan right) */
.star-plans .section-head h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600;
  margin: 8px 0 0;
  line-height: 1.15;
  white-space: nowrap;
}
.star-plans-layout {
  display: grid;
  grid-template-columns: minmax(168px, 220px) minmax(0, 1fr);
  gap: 22px 28px;
  align-items: stretch;
}
.star-plans-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  height: 100%;
  align-self: stretch;
}
.star-plans-nav {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0;
  min-width: 0;
  min-height: 0;
}
.star-block-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 4px;
}
.star-block-group + .star-block-group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.star-block-label {
  margin: 0 0 2px;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.star-block-group.is-active .star-block-label {
  color: var(--gold-dark);
}
.star-floor-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
}
.star-plans-panel .star-floor-pill {
  width: 100%;
  border-radius: 12px;
  text-align: left;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
}
.star-plans-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  flex-shrink: 0;
}
.star-plans-actions .btn {
  width: 100%;
  justify-content: center;
}
.star-plans-view {
  min-width: 0;
  display: flex;
}
.star-plans-panel .floor-panel.star-floor-panel {
  margin: 0;
  flex: 1;
  width: 100%;
}
.star-plans-panel .floor-plan-thumb {
  background: #faf8f5;
  width: 100%;
  height: 100%;
  min-height: min(62vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.star-plans-panel .floor-plan-thumb img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 860px);
  object-fit: contain;
  margin: 0;
}
@media (max-width: 900px) {
  .star-plans-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .star-plans-controls {
    height: auto;
  }
  .star-plans-panel .floor-plan-thumb {
    min-height: 0;
    padding: 10px;
  }
  .star-plans-panel .floor-plan-thumb img {
    max-height: min(70vh, 720px);
  }
}
@media (max-width: 640px) {
  .star-plans .section-head h2 {
    font-size: clamp(20px, 5.6vw, 28px);
  }
  .star-block-group + .star-block-group {
    margin-top: 14px;
    padding-top: 14px;
  }
  .star-floor-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .star-plans-panel .star-floor-pill {
    width: auto;
    flex: 1 1 auto;
    text-align: center;
    border-radius: 999px;
    padding: 9px 14px;
  }
  .star-plans-actions .btn {
    width: 100%;
  }
}

.about-gallery-card {
  display: flex; flex-direction: column; padding: 0; overflow: hidden; min-height: 0;
}
.about-gallery {
  position: relative; flex: 1; margin: 0; min-height: 280px; height: 100%;
  overflow: hidden; border: 0; border-radius: 0; background: var(--cream-deep);
}
.about-gallery-track {
  display: flex; height: 100%; min-height: 280px; transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.about-gallery-slide {
  min-width: 100%; height: 100%; background-size: cover; background-position: center;
}
.about-gallery-nav {
  position: absolute; inset: 0 12px; display: flex; justify-content: space-between;
  align-items: center; gap: 8px; pointer-events: none; z-index: 3;
}
.about-gallery-nav button {
  pointer-events: auto; width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: rgba(247, 243, 234, .94); color: var(--ink); font-size: 16px; cursor: pointer; font-weight: 700;
  box-shadow: 0 4px 12px rgba(59, 42, 31, .12);
}
.about-gallery-nav button:hover { background: var(--gold); color: var(--ink); }
.about-gallery-dots {
  position: absolute; left: 50%; bottom: 62px; transform: translateX(-50%);
  display: flex; gap: 6px; pointer-events: none; z-index: 3;
}
.about-gallery-dots i {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(59, 42, 31, .15);
}
.about-gallery-dots i.on { background: var(--gold); }
.about-address {
  display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 16px;
  border-bottom: 1px dashed var(--line); padding-bottom: 12px; transition: color .2s;
}
.about-address:hover { color: var(--gold-dark); }
.about-socials {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: flex; gap: 10px; align-items: center; z-index: 4;
}
.about-gallery .social-ico {
  background: rgba(247, 243, 234, .94);
  box-shadow: 0 4px 12px rgba(59, 42, 31, .14);
}
.social-ico {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0; line-height: 0; box-sizing: border-box;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social-ico svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.social-ico:hover { transform: translateY(-2px); }
.social-ico.ico-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.social-ico.ico-tg:hover { background: #29a9eb; color: #fff; border-color: #29a9eb; }
.social-ico.ico-ig:hover { background: var(--gold-dark); color: #fff; border-color: var(--gold-dark); }
.social-ico.ico-yt:hover { background: #FF0000; color: #fff; border-color: #FF0000; }
.social-ico.ico-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }

.amenities-mansion {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.amenity-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px; min-height: 110px;
}
.amenity-tile strong { display: block; font-size: 14px; margin-bottom: 4px; }
.amenity-tile span { font-size: 12.5px; color: var(--muted); }
.amenity-photo {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; min-height: 200px;
  background-color: #fff;
  background-size: cover; background-position: center; color: #fff;
  border: 0; padding: 0; width: 100%; text-align: left; cursor: pointer;
  font: inherit; display: block;
}
.amenity-photo--static {
  cursor: default;
  pointer-events: none;
}
.amenity-photo--static:hover {
  box-shadow: none;
  transform: none;
}
.amenity-photo .shade {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(59,42,31,.05) 40%, rgba(59,42,31,.85));
}
.amenity-photo .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px;
}
.amenity-photo .cap strong { display: block; font-size: 15px; margin-bottom: 3px; }
.amenity-photo .cap span { font-size: 12px; opacity: .85; }
.amenity-photo:hover { box-shadow: 0 16px 32px rgba(59,42,31,.18); transform: translateY(-2px); }
.amenity-photo:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.amenity-modal h3 { margin-bottom: 6px; }
.amenity-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 8px;
  align-items: center;
  margin: 8px 0 10px;
}
.amenity-gallery-frame {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.amenity-gallery-frame img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #fff;
}
.amenity-nav {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--cream); color: var(--ink); font-size: 22px; cursor: pointer;
  display: grid; place-items: center;
}
.amenity-nav:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.amenity-gallery-meta {
  text-align: center; font-size: 12.5px; color: var(--muted); margin-bottom: 10px;
}
.amenity-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
}
.amenity-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
}
.amenity-thumb.on { border-color: var(--gold); }
@media (max-width: 640px) {
  .amenity-gallery { grid-template-columns: 34px 1fr 34px; }
  .amenity-gallery-frame img { max-height: 240px; }
  .amenity-nav { width: 34px; height: 34px; font-size: 18px; }
}

#reviews .section-head h2 {
  max-width: none;
}
@media (min-width: 640px) {
  #reviews .section-head h2 { white-space: nowrap; }
}

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.review q {
  display: block; font-family: var(--display); font-size: 20px; line-height: 1.35; margin: 10px 0 16px;
}
.review cite { font-style: normal; font-size: 13px; color: var(--muted); }

.cta-band {
  background: linear-gradient(120deg, var(--ink), #5a4636);
  border-radius: var(--radius); padding: 40px; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--display); font-size: clamp(24px,2.8vw,40px); font-weight: 600;
  max-width: none; line-height: 1.15;
}
@media (min-width: 720px) {
  .cta-band h2 { white-space: nowrap; }
}

/* Back to top — same diameter & right as chat FAB; stacks above pulse ring */
.back-top {
  position: fixed;
  right: var(--fab-right);
  bottom: calc(var(--fab-bottom) + var(--fab-size) + var(--fab-ring) + var(--fab-stack-gap));
  z-index: 14990;
  width: var(--fab-size);
  height: var(--fab-size);
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(59, 42, 31, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s, background .2s, border-color .2s, color .2s;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.back-top:hover,
.back-top:focus-visible {
  background: var(--gold);
  border-color: var(--gold-dark);
  color: var(--ink);
  outline: none;
}
.back-top:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-soft), 0 10px 24px rgba(59, 42, 31, .18);
}
.back-top svg {
  display: block;
  width: 22px;
  height: 22px;
}
@media (max-width: 900px) {
  /* Chat FAB hidden; clear sticky / project CTA bars */
  .back-top {
    right: 16px;
    bottom: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-top { transition: opacity .15s, visibility .15s; transform: none; }
}

/* Chat widget */
.chat-fab {
  position: fixed; right: var(--fab-right); bottom: var(--fab-bottom); z-index: 15001;
  width: var(--fab-size); height: var(--fab-size); border-radius: 50%; border: 0;
  background: var(--gold); color: var(--ink); cursor: pointer;
  box-shadow: 0 12px 30px rgba(59,42,31,.28);
  display: grid; place-items: center; font-size: 22px; font-weight: 800;
  transition: transform .2s;
}
.chat-fab:hover { transform: scale(1.05); }
.chat-fab .pulse {
  position: absolute; inset: calc(var(--fab-ring) * -1); border-radius: 50%; border: 2px solid var(--gold);
  animation: chatPulse 1.8s infinite; pointer-events: none;
}
@keyframes chatPulse { 0%{transform:scale(.9);opacity:.8} 100%{transform:scale(1.35);opacity:0} }
.chat-panel {
  position: fixed; right: var(--fab-right); bottom: calc(var(--fab-bottom) + var(--fab-size) + var(--fab-ring) + var(--fab-stack-gap)); z-index: 15002;
  width: min(380px, calc(100vw - 28px)); height: min(560px, calc(100vh - 120px));
  background: #fff; border-radius: 22px; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(59,42,31,.28);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(12px) scale(.98); transition: .25s;
}
.chat-panel.open { opacity: 1; pointer-events: auto; transform: none; }
.chat-head {
  background: var(--ink); color: #fff; padding: 16px 16px 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.chat-op { display: flex; gap: 10px; align-items: center; }
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}
.chat-op strong { display: block; font-size: 14px; }
.chat-op span { font-size: 11px; color: rgba(255,255,255,.7); }
.chat-head-actions { display: flex; gap: 6px; }
.chat-head-actions button {
  width: 32px; height: 32px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12);
  color: #fff; cursor: pointer;
}
.chat-body { flex: 1; overflow: auto; padding: 16px; background: var(--cream); display: flex; flex-direction: column; gap: 10px; }
.chat-msg {
  max-width: 88%; padding: 10px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.45;
}
.chat-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.typing { opacity: .7; font-style: italic; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 10px; background: var(--cream); }
.chat-quick button {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 7px 11px;
  font-size: 12px; font-weight: 700; cursor: pointer; color: var(--ink);
}
.chat-quick button:hover { border-color: var(--gold-dark); background: var(--gold-soft); }
.chat-foot {
  border-top: 1px solid var(--line); padding: 10px; display: flex; gap: 8px; background: #fff;
}
.chat-foot input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 12px; font: inherit;
}
.chat-foot button {
  border: 0; background: var(--gold); color: var(--ink); border-radius: 12px;
  padding: 0 14px; font-weight: 800; cursor: pointer;
}
.chat-lead {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; display: grid; gap: 8px;
}
.chat-lead input { padding: 10px 12px; border-radius: 10px; border: 1.5px solid var(--line); font: inherit; }
.chat-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 16px 12px; padding: 10px; border-radius: 12px; background: #25D366; color: #fff;
  font-weight: 800; font-size: 13px;
}

@media (max-width: 900px) {
  .tour, .about-grid, .design-videos, .mansion-about-grid, .star-about-grid, .park-retail, .marine-sale-grid, .antares-sale { grid-template-columns: 1fr; }
  .antares-sale-carousel { min-height: 280px; }
  .tour-gallery { min-height: 280px; }
  .tour--wide .tour-gallery { min-height: 0; max-height: none; }
  .amenities-mansion, .reviews-grid, .trust-strip { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats .trust-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .about-stats .trust-item:nth-child(2n) { border-right: 0; }
  .about-stats .trust-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    padding: 16px 18px;
  }
  .about-stats .trust-item:last-child span { text-align: left; }
  .chat-panel { bottom: 100px; right: 12px; left: 12px; width: auto; }
}
@media (max-width: 640px) {
  .amenities-mansion, .reviews-grid, .trust-strip { grid-template-columns: 1fr; }
  .mansion-about-facts, .star-about-facts { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats .trust-item,
  .about-stats .trust-item:nth-child(2n),
  .about-stats .trust-item:last-child {
    grid-column: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
    gap: 16px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-stats .trust-item:last-child { border-bottom: 0; }
  .about-stats .trust-item strong { font-size: 22px; }
  .about-stats .trust-item span { text-align: right; font-size: 13px; }
  .lang-switch { display: none; }
  .header-actions .lang-switch { display: flex; }
}

/* Temporary background picker — remove later */
.theme-picker {
  position: fixed; left: 18px; bottom: 18px; z-index: 16000;
}
.theme-picker-toggle {
  width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; cursor: pointer; box-shadow: 0 10px 24px rgba(59,42,31,.22);
}
.theme-picker-panel {
  position: absolute; left: 0; bottom: 54px; width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 14px; box-shadow: 0 18px 40px rgba(59,42,31,.2);
}
.theme-picker-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
  font-size: 13px;
}
.theme-picker-head button {
  border: 0; background: var(--cream); width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
}
.theme-picker-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.theme-swatch {
  width: 100%; aspect-ratio: 1; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; box-shadow: inset 0 0 0 1px rgba(59,42,31,.12);
}
.theme-swatch.active { border-color: var(--gold-dark); }
.theme-picker-custom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; font-size: 12px; color: var(--muted); gap: 8px;
}
.theme-picker-custom input[type=color] {
  width: 42px; height: 32px; border: 0; background: none; cursor: pointer; padding: 0;
}
@media (max-width: 900px) {
  .theme-picker { bottom: 86px; }
}



/* Sticky plans filter */
.plans-filter {
  position: sticky;
  top: 72px;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0 14px;
  margin-bottom: 6px;
  background: linear-gradient(180deg, var(--cream) 70%, transparent);
}
.plans-filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.plans-filter-btn:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(59,42,31,.08);
}
.plans-filter-btn:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}
.plans-filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 8px 18px rgba(59,42,31,.16);
}
.plan-card.is-hidden { display: none !important; }
.plans-empty {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Floor tabs + unit cards (Block C) */
.floor-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.floor-tab {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: 9px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.floor-tab:hover { border-color: var(--gold); transform: translateY(-1px); }
.floor-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.floor-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.floor-plan-thumb {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%; max-width: none; padding: 0; margin: 0;
  cursor: zoom-in; overflow: hidden; line-height: 0;
  display: block;
}
.floor-plan-thumb img {
  display: block; width: 100%; height: auto; object-fit: contain;
  vertical-align: top;
}
.units-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  width: 100%;
}
.floor-empty {
  grid-column: 1 / -1;
  margin: 0; padding: 18px 14px;
  text-align: center; color: var(--muted); font-size: 14px;
  background: var(--cream); border-radius: var(--radius-sm);
  border: 1px dashed var(--line);
}
.unit-card {
  position: relative; text-align: left; width: 100%; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px;
  background: var(--cream);
  transition: border-color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.unit-card:hover {
  border-color: var(--gold-dark); transform: translateY(-3px); background: #fff;
  box-shadow: 0 14px 28px rgba(59,42,31,.1);
}
.unit-card.sold { opacity: .62; }
.unit-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.unit-no { font-family: var(--sans); font-weight: 800; font-size: 14px; font-variant-numeric: tabular-nums; }
.unit-type { font-size: 11.5px; color: var(--gold-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.unit-area { font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.unit-price { font-family: var(--sans); font-weight: 800; font-size: 16px; font-variant-numeric: tabular-nums; }
.units-grid--dense { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.unit-card--dense { padding: 10px 12px; }
.unit-card--dense .unit-card-top { margin-bottom: 4px; gap: 8px; }
.unit-card--dense .unit-no { font-size: 13px; }
.unit-card--dense .unit-type { font-size: 11px; letter-spacing: .02em; }
.unit-card-meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.unit-card--dense .unit-area { margin: 0; font-size: 12px; white-space: nowrap; }
.unit-card--dense .unit-price { font-size: 13.5px; white-space: nowrap; }
.unit-sold-badge {
  position: absolute; top: 10px; right: 10px; background: var(--ink); color: #fff;
  font-size: 9.5px; font-weight: 800; padding: 4px 8px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .06em;
}
.unit-modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.unit-modal-plan {
  display: block;
  width: 100%;
  max-height: 160px;
  margin: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.unit-modal-plan img {
  display: block;
  width: 100%;
  max-height: 148px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: #fff;
}
.unit-modal-plan span {
  position: absolute; left: 12px; bottom: 12px; background: rgba(59,42,31,.82); color: #fff;
  font-size: 10px; padding: 6px 10px; border-radius: 999px; font-weight: 700;
}
.unit-modal-body h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.unit-modal-features {
  margin: 0 0 4px;
  max-height: 140px;
  overflow: auto;
}
.modal-facts { margin-bottom: 12px; }
.unit-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.ses-lightbox {
  position: fixed; inset: 0; z-index: 30000; background: rgba(20,14,10,.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.ses-lightbox.open { opacity: 1; pointer-events: auto; }
.ses-lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  background: #fff;
}
@media (max-width: 640px) {
  .unit-modal-plan { max-height: 170px; }
  .unit-modal-plan img { max-height: 154px; }
  .units-grid { grid-template-columns: 1fr; }
  .units-grid--dense { grid-template-columns: 1fr 1fr; }
}

/* Citizenship / investment */
.cit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.cit-grid.cit-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.cit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cit-card.highlight {
  background: linear-gradient(160deg, var(--ink) 0%, #5a4636 100%);
  color: #fff;
  border-color: transparent;
}
.cit-card.highlight p,
.cit-card.highlight .cit-list { color: rgba(255,255,255,.82); }
.cit-badge {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,164,90,.18);
  padding: 6px 10px;
  border-radius: 999px;
}
.cit-card.highlight .cit-badge {
  background: rgba(200,164,90,.25);
  color: var(--gold);
}
.cit-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.cit-res-title .cit-price-line {
  display: block;
  margin: 0;
  line-height: 1.2;
}
.cit-card p { margin: 0; line-height: 1.65; color: var(--muted); font-size: 14.5px; }
.cit-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.cit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 8px;
}
.cit-stats div {
  background: var(--cream);
  border-radius: 12px;
  padding: 12px;
}
.cit-stats strong {
  display: block;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-dark);
  font-variant-numeric: tabular-nums;
}
.cit-stats span { font-size: 11px; color: var(--muted); }
.cit-card .btn { margin-top: auto; align-self: flex-start; }

/* Blog article pages */
.article-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.article-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.article-hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,42,31,.2), rgba(59,42,31,.88));
}
.article-hero .content {
  position: relative; z-index: 1;
  padding: 48px 0 40px;
  max-width: 760px;
}
.article-hero .tag {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.article-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 12px;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}
.article-body p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16.5px;
  margin-bottom: 16px;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--ink);
}
.article-body ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
  margin-bottom: 18px;
}
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; opacity: .85; margin-top: 8px;
}
.article-nav {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .cit-grid { grid-template-columns: 1fr; }
  .plans-filter { top: 64px; }
}
@media (max-width: 720px) {
  .cit-stats { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* MANSION project sticky bar */
.project-sticky {
  position: fixed; left: 50%; bottom: 18px; z-index: 70;
  transform: translateX(-50%) translateY(120%);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: rgba(59, 42, 31, .96);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(59,42,31,.3);
  backdrop-filter: blur(10px);
  transition: transform .35s ease;
  max-width: calc(100% - 24px);
}
.project-sticky.is-visible { transform: translateX(-50%) translateY(0); }
.project-sticky .label {
  font-size: 13px; white-space: nowrap;
}
.project-sticky .label strong {
  color: var(--gold); font-family: var(--sans); font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.project-sticky .btn-line {
  border-color: rgba(255,255,255,.45); color: #fff;
}
.project-sticky .btn-line:hover {
  background: #fff; color: var(--ink); border-color: #fff;
}

@media (max-width: 900px) {
  .project-sticky {
    left: 12px; right: 12px; bottom: 12px;
    transform: translateY(120%);
    border-radius: 18px;
    justify-content: space-between;
  }
  .project-sticky.is-visible { transform: translateY(0); }
  body.has-project-sticky { padding-bottom: 88px; }
}

/* Hide temp theme picker if leftover */
.theme-picker { display: none !important; }

/* SES SUN ALANYA — hidden investment landing */
.sun-hero .bg { background-position: 50% 48%; }
.sun-hero .shade {
  background:
    linear-gradient(180deg, rgba(59,42,31,.14) 0%, rgba(59,42,31,.72) 100%),
    linear-gradient(90deg, rgba(59,42,31,.42) 0%, rgba(59,42,31,.1) 52%, rgba(59,42,31,.04) 100%);
}
.sun-hero h1 { max-width: 14ch; }
.sun-page .star-sale-stack .antares-sale-carousel,
.sun-page .antares-sale-carousel {
  aspect-ratio: 16 / 9;
}
.sun-loc-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}
.sun-loc-visuals {
  display: grid;
  gap: 12px;
}
.sun-page #location .antares-sale,
.land-page #location .antares-sale {
  align-items: stretch;
}
.sun-page #location .antares-sale-copy,
.land-page #location .antares-sale-copy {
  height: auto;
  align-self: stretch;
}
.sun-page #location .antares-sale-actions,
.land-page #location .antares-sale-actions {
  margin-top: auto;
}
.sun-page #location .sun-loc-visuals {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}
.sun-page #location .antares-sale-carousel {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  align-self: stretch;
}
.sun-loc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sun-shot {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
}
.sun-shot img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.sun-shot { aspect-ratio: 16 / 9; }
.sun-map {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}
.sun-map iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  display: block;
}
.sun-plan {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.sun-page .sun-plan img { object-fit: cover; }

/* SES SUN #invest: stretch facade photo to the card height */
#invest .antares-sale {
  align-items: stretch;
}
#invest .antares-sale-copy {
  padding-bottom: 32px;
}
#invest .antares-sale-actions {
  padding-top: 22px;
  gap: 12px;
}
#invest .sun-plan,
#invest .sun-plan-photo {
  aspect-ratio: auto;
  align-self: stretch;
  height: auto;
  min-height: 0;
  position: relative;
}
#invest .sun-plan img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sun-price-now {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ink);
  margin: 4px 0 0;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.sun-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .sun-loc-grid,
  .sun-loc-split { grid-template-columns: 1fr; }
  #invest .sun-plan,
  #invest .sun-plan-photo {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 240px;
  }
}

/* SES LAND ALANYA — hidden land + build landing */
.land-page #location .antares-sale {
  align-items: stretch;
}
.land-page #location .antares-sale-copy {
  height: 100%;
  align-self: stretch;
}
.land-page #location .antares-sale-actions {
  margin-top: auto;
}
.land-page #location .sun-loc-visuals {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  grid-template-rows: none;
}
.land-page #location .antares-sale-carousel {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  align-self: stretch;
}
.land-page .sun-hero h1 { max-width: 18ch; }
.land-page .sun-hero .bg { background-position: 50% 58%; }
/* Section titles: Manrope. Hero H1 stays Bodoni via .project-hero h1 / .sun-hero h1 */
.land-page h2,
.land-page h3,
.land-page .section-head h2,
.land-page .antares-sale-copy h2,
.land-page .star-about-copy h2,
.land-page .panel h3,
.land-page .cta-band h2,
.land-page .modal h3 {
  font-family: var(--sans);
  font-weight: 800;
}
.land-page h2 .num,
.land-page h3 .num,
.land-page .antares-sale-lead .num,
.land-page .marine-sale-list .num {
  font-weight: 800;
  color: var(--ink);
}
.land-page .tools-grid {
  align-items: stretch;
}
.land-page .tools-grid > #landFloorCopy {
  position: relative;
  height: 100%;
  gap: 10px;
}
.land-page #landFloorCopy .land-floor-copy-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 auto;
  padding-bottom: 0;
}
.land-page #landFloorCopy .land-floor-copy-head .eyebrow {
  margin-bottom: 0;
}
.land-page #landFloorCopy .land-floor-copy-head h3 {
  margin-bottom: 0;
}
.land-page #landFloorCopy .lead {
  margin-bottom: 0;
  line-height: 1.65;
}
.land-page #landFloorCopy .marine-sale-list {
  flex: none;
  margin: 0;
  gap: 8px;
  align-content: start;
  min-height: calc(5 * 1.55em + 32px);
}
.land-page #landFloorCopy .marine-sale-list li {
  font-size: 14.5px;
  line-height: 1.55;
}
.land-page #landFloorCopy .land-floor-copy-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
}
.land-page #landFloorCopy .land-floor-copy-foot .btn {
  width: 100%;
  margin-top: 0;
}
.land-page .land-facade {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #cfc6b8;
  cursor: zoom-in;
  flex: 0 0 auto;
  isolation: isolate;
}
.land-page .land-facade img {
  width: 100%;
  height: auto;
  display: block;
}
.land-page .land-facade-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.land-page .land-facade-band {
  position: absolute;
  left: 37.5%;
  width: 29.8%;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  border-radius: 5px;
  background: rgba(200, 164, 90, 0.4);
  box-shadow:
    inset 0 0 0 2px rgba(200, 164, 90, 0.82),
    inset 0 0 18px rgba(200, 164, 90, 0.28);
  mix-blend-mode: multiply;
  transition: opacity .25s ease;
}
.land-page .land-facade-band[data-facade-band="attic"] {
  left: 40.9%;
  width: 20.2%;
  top: 11%;
  height: 10%;
  border-radius: 8px 8px 4px 4px;
  clip-path: polygon(44% 0, 53% 0, 100% 52%, 100% 100%, 0 100%, 0 52%);
}
.land-page .land-facade-band[data-facade-band="duplex"] { top: 21%; height: 15%; }
.land-page .land-facade-band[data-facade-band="floor"] { top: 36%; height: 25%; }
.land-page .land-facade-band[data-facade-band="mezzanine"] { top: 61%; height: 12%; }
.land-page .land-facade-band[data-facade-band="commercial"] { top: 73%; height: 11.8%; }
.land-page .land-facade[data-active="attic"] .land-facade-band[data-facade-band="attic"],
.land-page .land-facade[data-active="duplex"] .land-facade-band[data-facade-band="duplex"],
.land-page .land-facade[data-active="floor"] .land-facade-band[data-facade-band="floor"],
.land-page .land-facade[data-active="mezzanine"] .land-facade-band[data-facade-band="mezzanine"],
.land-page .land-facade[data-active="commercial"] .land-facade-band[data-facade-band="commercial"],
.land-page .land-facade-band.is-on {
  opacity: 1;
}
.land-page .land-facade:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}
.land-page .tools-grid > #plans .floor-panel {
  flex: 1 1 auto;
}
.land-page .tools-grid > #plans .floor-plan-thumb {
  height: 420px;
  min-height: 420px;
  max-height: 420px;
  flex: 0 0 420px;
  background: #fff;
}
.land-page .tools-grid > #plans .floor-plan-thumb img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.sun-page .star-sale-stack .antares-sale:has(.sun-plan:not(.sun-plan-photo)),
.land-page .star-sale-stack .antares-sale:has(.land-plan) {
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
}
.sun-page .star-sale-stack .antares-sale:has(.sun-plan:not(.sun-plan-photo)) .antares-sale-copy,
.land-page .star-sale-stack .antares-sale:has(.land-plan) .antares-sale-copy {
  height: auto;
  align-self: stretch;
}
.sun-page .sun-plan:not(.sun-plan-photo),
.land-page .sun-plan.land-plan {
  aspect-ratio: auto;
  min-height: 0;
  align-self: stretch;
  position: relative;
  background: #fff;
}
.sun-page .sun-plan:not(.sun-plan-photo) img,
.land-page .sun-plan.land-plan img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.land-table-wrap {
  overflow-x: auto;
  margin: 6px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.land-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 460px;
}
.land-table th,
.land-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.land-table th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(200,164,90,.1);
}
.land-table td { color: var(--ink); }
.land-table tbody tr:last-child td { border-bottom: 0; }
.land-table tfoot td {
  font-weight: 800;
  border-bottom: 0;
  background: var(--cream);
  padding-top: 12px;
  padding-bottom: 12px;
}
.land-page #sales .sun-plan-photo {
  aspect-ratio: auto;
  align-self: stretch;
  min-height: 0;
  position: relative;
}
.land-page #sales .sun-plan-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .land-page .tools-grid > #plans .floor-plan-thumb {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    flex: 0 0 300px;
  }
  .land-page .tools-grid > #plans .floor-plan-thumb img {
    max-height: 300px;
  }
  .land-page #sales .sun-plan-photo {
    aspect-ratio: 16 / 9;
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media { transition: none !important; transform: none !important; }
  .plan-card, .btn, .plans-filter-btn { transition: none; }
  .land-page .land-facade-band { transition: none; }
}

