:root {
  --ink: #14110d;
  --noir: #0e0d0b;
  --charcoal: #1f1c17;
  --graphite: #2d302b;
  --ivory: #f5efe3;
  --paper: #ebe1d1;
  --mist: #d8d6cc;
  --muted: #665d50;
  --champagne: #d6ae63;
  --champagne-deep: #765020;
  --verdigris: #71877c;
  --terracotta: #a6674d;
  --line: rgba(20, 17, 13, 0.14);
  --line-light: rgba(245, 239, 227, 0.16);
  --radius: 8px;
  --shadow: 0 28px 90px rgba(14, 13, 11, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--noir);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), 1240px);
  margin: 16px auto 0;
  padding: 10px 12px;
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 227, 0.16);
  background: rgba(14, 13, 11, 0.54);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
}

.site-header.scrolled {
  color: var(--ink);
  border-color: rgba(20, 17, 13, 0.12);
  background: rgba(245, 239, 227, 0.9);
  box-shadow: 0 16px 50px rgba(14, 13, 11, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: min(210px, 100%);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(20, 17, 13, 0.16);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-mark-frame {
  fill: rgba(20, 17, 13, 0.08);
  stroke: currentColor;
  stroke-width: 1.8;
}

.brand-mark-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.68;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a,
.text-link {
  opacity: 0.78;
  transition: opacity 160ms ease-out;
}

.desktop-nav a:hover,
.text-link:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 0;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 160ms ease-out, opacity 160ms ease-out, border-color 160ms ease-out;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(214, 174, 99, 0.56);
  outline-offset: 3px;
}

.button-dark {
  color: var(--ivory);
  background: var(--ink);
}

.button-gold {
  color: var(--ink);
  background: var(--champagne);
}

.button-light {
  color: var(--ivory);
  border-color: rgba(245, 239, 227, 0.42);
  background: rgba(245, 239, 227, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  color: currentColor;
  background: transparent;
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 30;
  top: 82px;
  left: 16px;
  right: 16px;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.section-dark {
  color: var(--ivory);
  background: var(--noir);
}

.hero {
  position: relative;
  min-height: 96dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 24px 36px;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.9) 0%, rgba(14, 13, 11, 0.72) 40%, rgba(14, 13, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(14, 13, 11, 0.96) 0%, rgba(14, 13, 11, 0.08) 48%, rgba(14, 13, 11, 0.42) 100%);
}

.hero-media,
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-vignette {
  z-index: -1;
  background:
    radial-gradient(circle at 68% 20%, rgba(214, 174, 99, 0.18), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(113, 135, 124, 0.2), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-bottom: 104px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--champagne);
}

.section-kicker {
  color: var(--champagne-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.94;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(5rem, 10.5vw, 10.8rem);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.4vw, 5.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  color: rgba(245, 239, 227, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(245, 239, 227, 0.78);
  border: 1px solid rgba(245, 239, 227, 0.16);
  background: rgba(14, 13, 11, 0.42);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1px;
  width: min(640px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(245, 239, 227, 0.22);
  background: rgba(245, 239, 227, 0.16);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(14, 13, 11, 0.2);
}

.hero-panel div {
  padding: 22px;
  background: rgba(14, 13, 11, 0.58);
}

.hero-panel span,
.stat-label {
  display: block;
  color: rgba(245, 239, 227, 0.64);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong,
.stat-value {
  display: block;
  margin-top: 8px;
  color: var(--ivory);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 32px));
  margin: -1px auto 0;
  border-left: 1px solid var(--line-light);
  background: var(--noir);
}

.quick-stats div {
  min-height: 128px;
  padding: 30px 24px;
  color: var(--ivory);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.intro,
.project-details,
.selling-points,
.residence-specs,
.facilities,
.floor-plans,
.buyer-profiles,
.gallery,
.location,
.launch-process,
.faq,
.final-cta {
  color: var(--ink);
  background: var(--ivory);
}

main {
  background: var(--ivory);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 72px;
}

.intro h2 {
  max-width: 760px;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-badge {
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.intro-badge span {
  display: block;
  color: var(--champagne-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-badge strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 0;
}

.detail-card {
  min-width: 0;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.035);
  border-radius: var(--radius);
}

.primary-detail {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  align-content: end;
  min-height: 472px;
  color: var(--ivory);
  background:
    linear-gradient(0deg, rgba(14, 13, 11, 0.86), rgba(14, 13, 11, 0.32)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1300&q=84") center / cover;
}

.primary-detail p {
  max-width: 560px;
  color: rgba(245, 239, 227, 0.76);
}

.detail-card span,
.profile-grid span,
.process-grid span {
  display: block;
  color: var(--champagne-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card strong {
  display: block;
  margin: 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.detail-card p,
.spec-grid p,
.profile-grid p,
.process-grid p,
.faq-list p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.selling-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 0;
}

.selling-points article {
  min-height: 286px;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.selling-points article:first-child {
  border-left: 1px solid var(--line);
}

.icon {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--champagne-deep);
  font-weight: 900;
}

.selling-points p,
.facility-grid p,
.plan-details p,
.location-copy p,
.brochure-content p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 0;
  margin: 0;
  background:
    linear-gradient(120deg, var(--noir), #191611 56%, #25231e);
}

.feature-image {
  min-height: 680px;
  padding: 34px 0 34px max(24px, calc((100vw - var(--max)) / 2));
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow);
}

.feature-content {
  align-self: center;
  padding: 86px max(24px, calc((100vw - var(--max)) / 2)) 86px 72px;
}

.feature-content p {
  color: rgba(245, 239, 227, 0.74);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "+";
  color: var(--champagne);
  font-weight: 900;
}

.residence-specs {
  padding-top: 20px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-grid article {
  min-width: 0;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
}

.spec-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 42px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(310px, auto);
  gap: 14px;
}

.facility-grid article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 24px;
  color: var(--ivory);
  isolation: isolate;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.facility-grid article:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.facility-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-grid article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(14, 13, 11, 0.86), rgba(14, 13, 11, 0.12));
}

.facility-grid h3,
.facility-grid p {
  position: relative;
}

.facility-grid h3 {
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.62rem;
  overflow-wrap: anywhere;
}

.facility-grid p {
  margin-bottom: 0;
  color: rgba(245, 239, 227, 0.76);
  overflow-wrap: anywhere;
}

.floor-plans {
  padding-top: 20px;
}

.plan-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
}

.tab-button {
  min-width: 118px;
  min-height: 44px;
  border: 1px solid transparent;
  color: var(--ink);
  background: transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.tab-button.active {
  color: var(--ivory);
  background: var(--ink);
}

.plan-view {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.unit-mix {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.unit-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.85fr 0.9fr 1.2fr;
  gap: 1px;
  background: var(--line);
}

.unit-row span {
  display: block;
  min-width: 0;
  padding: 18px;
  background: rgba(245, 239, 227, 0.78);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.unit-head span {
  color: var(--ivory);
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-profiles {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 54px;
  padding-top: 10px;
}

.profile-grid {
  display: grid;
  gap: 12px;
}

.profile-grid article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
}

.profile-grid h3,
.process-grid h3 {
  margin-top: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.72rem;
}

.plan-drawing {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(rgba(20, 17, 13, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 17, 13, 0.08) 1px, transparent 1px),
    #efe6d6;
  background-size: 34px 34px;
}

.room {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: rgba(245, 239, 227, 0.88);
  color: var(--ink);
  font-size: clamp(0.52rem, 1.35vw, 0.76rem);
  font-weight: 900;
  line-height: 1.1;
  padding: 6px;
  text-align: center;
  text-transform: uppercase;
}

.room-label {
  display: -webkit-box;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.room-balcony {
  background: var(--verdigris);
  color: var(--ivory);
}

.plan-details {
  padding: 48px;
  color: var(--ivory);
  background: var(--ink);
}

.plan-details h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  overflow-wrap: anywhere;
}

.plan-details p {
  color: rgba(245, 239, 227, 0.72);
  overflow-wrap: anywhere;
}

.plan-details dl {
  display: grid;
  gap: 1px;
  margin: 32px 0;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.plan-details dl div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(245, 239, 227, 0.06);
}

.plan-details dt {
  color: rgba(245, 239, 227, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-details dd {
  margin: 0;
  color: var(--ivory);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--charcoal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease-out;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item.wide {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:not(.wide):not(.tall) {
  grid-column: span 3;
}

.location {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 54px;
  align-items: stretch;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.location-list span {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
  font-weight: 900;
}

.map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 13, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background:
    radial-gradient(circle at 22% 20%, rgba(214, 174, 99, 0.2), transparent 22%),
    radial-gradient(circle at 80% 74%, rgba(113, 135, 124, 0.32), transparent 24%),
    linear-gradient(135deg, #f1e6d4 0%, #d5cdc0 100%);
}

.map-visual::before,
.map-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(20, 17, 13, 0.1);
  border-radius: 50%;
}

.map-visual::before {
  width: 390px;
  height: 390px;
  left: -70px;
  top: 48px;
}

.map-visual::after {
  width: 460px;
  height: 460px;
  right: -130px;
  bottom: -100px;
}

.map-road {
  position: absolute;
  display: block;
  height: 18px;
  border: 1px solid rgba(20, 17, 13, 0.1);
  background: rgba(245, 239, 227, 0.72);
  box-shadow: 0 8px 18px rgba(14, 13, 11, 0.08);
}

.road-one {
  width: 120%;
  left: -12%;
  top: 45%;
  transform: rotate(-13deg);
}

.road-two {
  width: 90%;
  right: -14%;
  top: 22%;
  transform: rotate(38deg);
}

.road-three {
  width: 78%;
  left: -16%;
  bottom: 22%;
  transform: rotate(24deg);
}

.map-district,
.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  border-radius: var(--radius);
}

.map-district {
  padding: 10px 12px;
  color: var(--muted);
  border: 1px solid rgba(20, 17, 13, 0.12);
  background: rgba(245, 239, 227, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.klcc {
  top: 18%;
  right: 24%;
}

.trx {
  right: 12%;
  bottom: 26%;
}

.bangsar {
  left: 13%;
  bottom: 20%;
}

.map-pin {
  left: 46%;
  top: 45%;
  padding: 18px 20px;
  color: var(--ivory);
  background: var(--ink);
  box-shadow: 0 18px 46px rgba(14, 13, 11, 0.26);
  transform: translate(-50%, -50%);
}

.map-pin::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin strong,
.map-pin small {
  position: relative;
  z-index: 1;
}

.map-pin small {
  color: rgba(245, 239, 227, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-process {
  padding-top: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
}

.lead-section {
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  gap: 90px;
  padding: 116px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, #0e0d0b 0%, #16130f 54%, #252119 100%);
}

.lead-copy p {
  color: rgba(245, 239, 227, 0.74);
}

.lead-points {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.lead-points span {
  padding: 18px 0;
  border-top: 1px solid rgba(245, 239, 227, 0.16);
  color: rgba(245, 239, 227, 0.78);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 30px;
  color: var(--ink);
  border: 1px solid rgba(245, 239, 227, 0.26);
  background: rgba(245, 239, 227, 0.94);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  border-radius: var(--radius);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(20, 17, 13, 0.16);
  color: var(--ink);
  background: #fffaf2;
  border-radius: var(--radius);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note.success {
  color: #376447;
  font-weight: 800;
}

.faq {
  padding-top: 86px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 32px;
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(245, 239, 227, 0.7);
  background: var(--noir);
}

.site-footer strong {
  color: var(--ivory);
}

.floating-whatsapp {
  position: fixed;
  z-index: 35;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  max-width: calc(100vw - 32px);
  padding: 8px 16px 8px 8px;
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 227, 0.18);
  background: rgba(14, 13, 11, 0.9);
  box-shadow: 0 18px 52px rgba(14, 13, 11, 0.28);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.floating-whatsapp.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp.is-muted {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.floating-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: #fff;
  background: #1f9d62;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.floating-whatsapp-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-bubble {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.whatsapp-phone {
  fill: currentColor;
}

.floating-whatsapp-text {
  min-width: 0;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--ivory);
  font-weight: 800;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 227, 0.12);
  color: rgba(245, 239, 227, 0.56);
  font-size: 0.88rem;
}

.lightbox {
  width: min(1000px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(14, 13, 11, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 82dvh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  display: block;
  margin: 0 0 10px auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(245, 239, 227, 0.36);
  color: var(--ivory);
  background: rgba(14, 13, 11, 0.72);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.brochure-page {
  background: var(--ivory);
}

.brochure-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 80px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 800;
}

.brochure-cover {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
}

.brochure-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.82), rgba(14, 13, 11, 0.18)),
    linear-gradient(0deg, rgba(14, 13, 11, 0.68), transparent);
}

.brochure-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brochure-cover div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 52px;
}

.brochure-cover p {
  color: rgba(245, 239, 227, 0.8);
  font-size: 1.18rem;
}

.brochure-content {
  display: grid;
  gap: 28px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.brochure-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brochure-facts article {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}

.brochure-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-facts strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
}

.two-column {
  grid-template-columns: 0.8fr 1fr;
  align-items: start;
}

.dark-list li {
  color: var(--ink);
}

.brochure-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 56px;
}

.brochure-cta h2 {
  margin: 0;
}

.brochure-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brochure-table .unit-row span {
  background: var(--paper);
}

.brochure-table .unit-head span {
  background: var(--ink);
}

.brochure-note {
  padding: 22px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .text-link {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-panel,
  .quick-stats,
  .selling-points,
  .project-details,
  .brochure-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .feature-band,
  .plan-view,
  .location,
  .lead-section,
  .buyer-profiles,
  .two-column {
    grid-template-columns: 1fr;
  }

  .primary-detail {
    grid-column: span 2;
    grid-row: auto;
    min-height: 430px;
  }

  .spec-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-image {
    min-height: 520px;
    padding: 28px;
  }

  .feature-image img {
    border-radius: var(--radius);
  }

  .feature-content {
    padding: 18px 28px 70px;
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-grid article:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .lead-section {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 940px;
    padding: 118px 16px 24px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(14, 13, 11, 0.46) 0%, rgba(14, 13, 11, 0.78) 42%, rgba(14, 13, 11, 0.98) 100%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    padding-bottom: 370px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.3rem, 14.2vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-ctas .button {
    width: 100%;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 22px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .quick-stats,
  .selling-points,
  .project-details,
  .spec-grid,
  .facility-grid,
  .process-grid,
  .brochure-facts {
    grid-template-columns: 1fr;
  }

  .primary-detail {
    grid-column: auto;
    min-height: 430px;
  }

  .quick-stats {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .selling-points article {
    min-height: 230px;
    border-left: 1px solid var(--line);
  }

  .feature-image {
    min-height: 410px;
    padding: 18px 16px 0;
  }

  .feature-content {
    padding: 44px 16px 66px;
  }

  .facility-grid article:first-child {
    grid-column: auto;
  }

  .plan-drawing {
    min-height: 400px;
  }

  .plan-details {
    padding: 30px;
  }

  .plan-details dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .unit-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 239, 227, 0.78);
  }

  .unit-row span {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 17, 13, 0.08);
    background: transparent;
  }

  .unit-row span::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .unit-row span:last-child {
    border-bottom: 0;
  }

  .unit-head {
    display: none;
  }

  .buyer-profiles {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item:not(.wide):not(.tall) {
    grid-column: auto;
    grid-row: auto;
  }

  .location-list,
  .final-cta,
  .site-footer,
  .brochure-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-visual {
    min-height: 360px;
  }

  .lead-section {
    padding: 76px 16px;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 48px;
    padding: 6px;
  }

  .floating-whatsapp-icon {
    width: 36px;
    height: 36px;
  }

  .floating-whatsapp-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .brochure-cover {
    min-height: 560px;
  }

  .brochure-cover div {
    padding: 28px;
  }
}
