
:root {
  --black: #050505;
  --ink: #151515;
  --muted: #6f6a61;
  --paper: #f6f1e8;
  --soft: #eee5d6;
  --card: #fffaf0;
  --gold: #d0a64f;
  --gold-dark: #9f7832;
  --line: rgba(20, 18, 14, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 16px 40px rgba(30, 24, 14, 0.08);
  --shadow-hover: 0 24px 54px rgba(30, 24, 14, 0.14);
  --shadow-gold: 0 18px 42px rgba(208, 166, 79, 0.22);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 440px),
    var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select,
input,
textarea {
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s var(--ease);
}

:focus-visible {
  outline: 3px solid rgba(208, 166, 79, 0.42);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    transform 0.28s var(--ease);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 241, 232, 0.94);
  border-color: rgba(20, 18, 14, 0.12);
  box-shadow: 0 16px 44px rgba(20, 18, 14, 0.14);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 54px;
  min-width: max-content;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.28s ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-inline-start: auto;
  font-weight: 800;
  font-size: 0.8rem;
}

.main-nav a {
  position: relative;
  opacity: 0.82;
  padding: 8px 0;
  isolation: isolate;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.header-action::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.36) 45%, transparent 62% 100%);
  transform: translateX(115%);
  transition: transform 0.65s var(--ease-soft);
}

.header-action:hover::before,
.btn:hover::before {
  transform: translateX(-115%);
}

.header-action,
.btn-primary {
  color: #111;
  background: var(--gold);
}

.btn-primary:hover,
.header-action:hover {
  background: #e2bd69;
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 0.24s var(--ease),
    opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 122px 0 56px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 48% 0%;
  transform: scale(1.005);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.02) 30%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.08) 58%, rgba(5, 5, 5, 0.02));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 9% auto;
  width: clamp(180px, 18vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(208, 166, 79, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 166, 79, 0.12), transparent 64%);
  filter: blur(1px);
  opacity: 0.8;
  animation: floatSoft 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.55;
}

.hero-developer {
  margin: 8px 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  font-weight: 800;
  line-height: 1.6;
}

.hero-developer-logo {
  width: clamp(190px, 28vw, 300px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.42));
}

.hero-text {
  max-width: 720px;
  margin: 18px 0 0;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  justify-content: center;
  gap: 12px;
  width: min(100%, 620px);
  margin: 36px auto 0;
}

.hero-facts div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s var(--ease);
}

.hero-facts div:hover {
  border-color: rgba(208, 166, 79, 0.38);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.09));
  transform: translateY(-4px);
}

.hero-facts strong {
  display: block;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

.hero-facts span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  line-height: 1.55;
}

.quick-brief {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(208, 166, 79, 0.11), transparent 40%),
    var(--black);
  border-top: 1px solid rgba(208, 166, 79, 0.34);
}

.brief-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding-block: 22px;
}

.brief-grid p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.brief-link {
  position: relative;
  color: var(--gold);
  font-weight: 900;
}

.brief-link::after,
.footer-inner a::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease);
}

.brief-link:hover::after,
.footer-inner a:hover::after {
  transform: scaleX(1);
}

.brief-link:hover,
.footer-inner a:hover {
  color: #edca78;
}

.section {
  padding: clamp(70px, 8vw, 108px) 0;
}

.muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent),
    var(--soft);
}

.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(208, 166, 79, 0.08), transparent 38%),
    var(--black);
}

.split,
.mall-grid,
.location-grid,
.updates-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.24;
  text-wrap: balance;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.mall-grid p,
.location-grid p,
.booking-grid p,
.contact-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.dark p,
.dark dd {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.intent-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 52%),
    var(--paper);
}

.intent-heading {
  max-width: 900px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.discovery-copy {
  padding: 36px 40px 36px 0;
}

.discovery-copy + .discovery-copy {
  padding-inline: 40px 0;
  border-inline-start: 1px solid var(--line);
}

.discovery-copy h3,
.faq-intro h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.discovery-copy p,
.faq-intro > p:last-child,
.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.discovery-ar,
.discovery-ar h3,
.faq-list [lang="ar"],
.faq-list details[lang="ar"] {
  font-family: "Cairo", Arial, sans-serif;
}

.discovery-ar {
  text-align: right;
}

.discovery-topics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.discovery-topics li {
  min-width: 0;
  padding: 24px 22px;
  border-inline-end: 1px solid var(--line);
}

.discovery-topics li:first-child {
  padding-inline-start: 0;
}

.discovery-topics li:last-child {
  padding-inline-end: 0;
  border-inline-end: 0;
}

.discovery-topics strong,
.discovery-topics span {
  display: block;
}

.discovery-topics strong {
  color: var(--gold-dark);
  font-size: 0.98rem;
}

.discovery-topics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  margin-top: 68px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  line-height: 1.45;
}

.faq-list details[dir="rtl"] summary {
  padding: 20px 0 20px 42px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset: 16px 0 auto auto;
  color: var(--gold-dark);
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform 0.24s var(--ease);
}

.faq-list details[dir="rtl"] summary::after {
  inset: 16px auto auto 0;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 42px 20px 0;
}

.faq-list details[dir="rtl"] p {
  padding: 0 0 20px 42px;
}

.about-logo {
  width: min(420px, 100%);
  height: auto;
  margin: 2px 0 24px;
  filter: drop-shadow(0 18px 34px rgba(30, 24, 14, 0.1));
}

.competitive-edge {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(208, 166, 79, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(208, 166, 79, 0.12), transparent 46%),
    rgba(255, 250, 240, 0.72);
  box-shadow: var(--shadow-soft);
}

.competitive-edge span {
  display: block;
  color: var(--gold-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.competitive-edge ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.competitive-edge li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.8;
}

.competitive-edge li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.85em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(208, 166, 79, 0.14);
}

.about-panel {
  display: grid;
  gap: 14px;
}

.about-panel article,
.unit-card,
.update-list article,
.lead-form,
.contact-cards a {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s var(--ease),
    background-color 0.24s ease;
}

.about-panel article {
  padding: 24px;
}

.about-panel article:hover,
.unit-card:hover,
.update-list article:hover,
.contact-cards a:hover {
  border-color: rgba(208, 166, 79, 0.34);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.about-panel span {
  color: var(--gold-dark);
  font-weight: 900;
}

.about-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-grid div {
  min-height: 160px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s var(--ease);
}

.spec-grid div:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.spec-grid dt {
  color: var(--gold);
  font-weight: 900;
}

.spec-grid dd {
  margin: 10px 0 0;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 250px;
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(208, 166, 79, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(208, 166, 79, 0.08), transparent 46%),
    #17130d;
  border: 1px solid rgba(208, 166, 79, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s var(--ease);
}

.feature-grid article:hover {
  border-color: rgba(208, 166, 79, 0.44);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.16);
  transform: translateY(-6px);
}

.feature-grid h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 1.22rem;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.filters label,
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.filters select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.filters select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(208, 166, 79, 0.17);
}

.unit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.unit-list-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.unit-list-actions[hidden] {
  display: none;
}

.unit-list-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.unit-more-button {
  min-width: 154px;
  min-height: 48px;
  padding: 11px 22px;
  color: var(--gold-dark);
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(159, 120, 50, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(30, 24, 14, 0.08);
}

.unit-more-button:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.unit-card {
  padding: 20px;
  border-radius: 8px;
}

.unit-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.unit-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.status.available {
  color: #17482d;
  background: #dff1e5;
}

.status.reserved {
  color: #6a4b05;
  background: #f5dfae;
}

.status.sold {
  color: #6b1d1d;
  background: #f1d0d0;
}

.unit-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.unit-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.unit-meta strong {
  display: block;
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.plan-tabs button,
.unit-buttons button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  cursor: pointer;
  font-weight: 900;
}

.plan-tabs button:hover,
.unit-buttons button:hover {
  border-color: rgba(208, 166, 79, 0.5);
  box-shadow: 0 12px 24px rgba(30, 24, 14, 0.08);
  transform: translateY(-3px);
}

.plan-tabs .is-active,
.unit-buttons .is-active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(208, 166, 79, 0.2);
}

.plan-view {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
  align-items: stretch;
}

.plan-image-wrap {
  overflow: auto;
  min-height: 420px;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plan-image-wrap img {
  width: 100%;
  min-width: 760px;
  transition: transform 0.5s var(--ease-soft);
}

.plan-image-wrap:hover img {
  transform: scale(1.015);
}

.plan-details {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(208, 166, 79, 0.1), transparent 42%),
    var(--black);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
}

.plan-details span {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.plan-details h3 {
  margin: 10px 0;
  font-size: 1.7rem;
}

.plan-details p {
  color: rgba(255, 255, 255, 0.72);
}

.unit-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.selected-unit {
  margin-top: 18px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid button {
  position: relative;
  height: 260px;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--white);
  background: var(--black);
  cursor: pointer;
  text-align: start;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 0.24s ease,
    transform 0.24s var(--ease);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.055);
}

.gallery-grid button:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.gallery-grid span {
  position: absolute;
  inset: auto 14px 14px;
  padding: 8px 10px;
  color: var(--black);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nearby-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.nearby-list li {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s var(--ease);
}

.nearby-list li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(208, 166, 79, 0.34);
  transform: translateY(-2px);
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}

.map-card:hover img {
  transform: scale(1.035);
}

.update-list {
  display: grid;
  gap: 14px;
}

.update-list article {
  padding: 22px;
}

.update-list time {
  color: var(--gold-dark);
  font-weight: 900;
}

.update-list h3 {
  margin: 8px 0;
}

.update-list p {
  margin: 0;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(208, 166, 79, 0.12), transparent 36%),
    var(--card);
}

.lead-form .full,
.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 28px;
  margin: 0;
  color: #285b39;
  font-weight: 900;
}

.contact-section {
  padding: clamp(70px, 8vw, 96px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(208, 166, 79, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(208, 166, 79, 0.1), transparent 38%),
    #12100c;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards a {
  display: grid;
  gap: 4px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-cards span {
  color: var(--gold);
  font-weight: 900;
}

.lightbox {
  width: min(1040px, calc(100% - 28px));
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.lightbox button {
  position: absolute;
  inset: 12px 12px auto auto;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--gold);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: var(--black);
  border-radius: var(--radius);
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
  border-top: 1px solid rgba(208, 166, 79, 0.28);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(159, 120, 50, 0.38);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 250, 240, 0.68);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--motion-duration, 0.72s) var(--ease-soft),
    transform var(--motion-duration, 0.72s) var(--ease-soft),
    filter var(--motion-duration, 0.72s) var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-motion="hero-title"] {
  --motion-duration: 0.9s;
  transform: translate3d(34px, 0, 0);
}

[data-motion="hero-copy"] {
  --motion-duration: 0.82s;
  transform: translate3d(24px, 12px, 0);
}

[data-motion="from-right"] {
  transform: translate3d(42px, 0, 0);
}

[data-motion="from-left"] {
  transform: translate3d(-42px, 0, 0);
}

[data-motion="fade-up"],
[data-motion="stagger-up"] {
  transform: translate3d(0, 26px, 0);
}

[data-motion="scale-soft"] {
  transform: scale(0.965);
  filter: saturate(0.88);
}

[data-motion="fade-soft"] {
  transform: translate3d(0, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes heroDrift {
  from {
    object-position: 50% 50%;
  }

  to {
    object-position: 53% 48%;
  }
}

@keyframes floatSoft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-12px, -16px, 0);
  }
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    color: var(--ink);
    background: rgba(246, 241, 232, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.24s ease,
      transform 0.24s var(--ease);
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.74);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-action {
    display: none;
  }

  .split,
  .mall-grid,
  .location-grid,
  .updates-grid,
  .booking-grid,
  .contact-grid,
  .plan-view,
  .brief-grid,
  .discovery-grid,
  .faq-block {
    grid-template-columns: 1fr;
  }

  .discovery-copy,
  .discovery-copy + .discovery-copy {
    padding-inline: 0;
  }

  .discovery-copy + .discovery-copy {
    border-block-start: 1px solid var(--line);
    border-inline-start: 0;
  }

  .discovery-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discovery-topics li:nth-child(2) {
    border-inline-end: 0;
  }

  .discovery-topics li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .discovery-topics li:nth-child(3) {
    padding-inline-start: 0;
  }

  .feature-grid,
  .unit-list,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 10px 0 auto;
    width: min(100% - 20px, 1180px);
    min-height: 64px;
  }

  .brand {
    width: 166px;
    height: 48px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 0 36px;
  }

  .hero-media {
    object-position: 42% 0%;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.04) 26%, rgba(5, 5, 5, 0.62) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.42));
  }

  .hero-content {
    max-width: calc(100% - 32px);
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 0.96;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.45;
    color: white;
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions,
  .hero-facts,
  .filters,
  .feature-grid,
  .unit-list,
    .gallery-grid,
    .nearby-list,
    .lead-form,
    .spec-grid,
    .discovery-topics {
    grid-template-columns: 1fr;
  }

  .discovery-topics li,
  .discovery-topics li:first-child,
  .discovery-topics li:nth-child(3),
  .discovery-topics li:last-child {
    padding-inline: 0;
    border-top: 1px solid var(--line);
    border-inline-end: 0;
  }

  .discovery-topics li:first-child {
    border-top: 0;
  }

  .section,
  .contact-section {
    padding: 64px 0;
  }

  .unit-list-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .unit-more-button {
    width: 100%;
  }

  .plan-image-wrap {
    min-height: 310px;
  }

  .plan-image-wrap img {
    min-width: 620px;
  }
}

@media (max-width: 430px) {
  .hero-media {
    object-position: 47% 0%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
