:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #9b7a3f;
  /* Deep chocolate browns from the reference image */
  --choc: #1c1208;
  --choc2: #251608;
  --choc3: #2e1c0a;
  --choc4: #38220d;
  /* Legacy aliases mapped to chocolate */
  --dark: #1c1208;
  --dark2: #251608;
  --dark3: #2e1c0a;
  /* White sections */
  --cream: #ffffff;
  --cream2: #f9f6f2;
  --text: #1c1208;
  --text-light: #7a6a58;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(28, 18, 8, 0.97);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(247, 243, 236, 0.75);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* FIXED CTA BUTTON */
.fixed-cta-btn {
  position: fixed;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fixed-cta-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 28px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  transform: rotate(90deg);
  white-space: nowrap;
}
#fixed-cta-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.35);
  transform: rotate(90deg) translateX(-4px);
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 40%, rgba(28, 18, 8, 0.92) 100%),
    linear-gradient(0deg, rgba(28, 18, 8, 0.72) 0%, transparent 50%),
    url("./Assets/1348480775698ebda38dbf75-458467531770962339.webp")
      center/cover no-repeat;
  transform: scale(1.05);
  animation: heroScale 8s ease-out forwards;
}
@keyframes heroScale {
  to {
    transform: scale(1);
  }
}

.hero-content {
  padding: 0 80px 40px;
  max-width: 700px;
  width: 100%;
}
.hero-tag {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgb(255, 255, 255);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 44px;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 44px;
  border: 1px solid rgba(247, 243, 236, 0.4);
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 80px;
  display: flex;
  gap: 60px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
  align-items: flex-end;
}
.hero-stat-item {
  text-align: right;
}
.hero-stat-num {
  font-family: "Jost", sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.5px;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(247, 243, 236, 0.5);
  text-transform: uppercase;
  margin-top: 6px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GOLD TICKER */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ticker-item::after {
  content: "◆";
  font-size: 8px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SECTION STYLES */
section {
  position: relative;
}
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-number {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ABOUT — White section */
.about {
  background: #ffffff;
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-visual:hover img {
  transform: scale(1.04);
}
.about-visual-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(28, 18, 8, 0.88);
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}
.about-visual-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
}
.about-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}
.about-content .section-label {
  color: var(--gold-dark);
}
.about-content .section-title {
  color: var(--text);
}
.about-body {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
  max-width: 460px;
}
.about-architect {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(28, 18, 8, 0.1);
}
.about-architect-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.about-architect-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}
.about-architect-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

/* KEY FEATURES GRID — Deep chocolate brown like the image */
.features {
  background: #1c1208;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 100px 80px;
}
.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.feature-card {
  background: rgba(56, 34, 13, 0.6);
  padding: 44px 32px;
  border-bottom: 3px solid transparent;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: all 0.4s ease;
  cursor: default;
  backdrop-filter: blur(4px);
}
.feature-card:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.25);
  border-bottom: 3px solid var(--gold);
  transform: translateY(-4px);
}
.feature-num {
  font-family: "Jost", sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.35);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.feature-card:hover .feature-num {
  color: var(--gold);
}
.feature-title {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.5;
}
.feature-desc {
  font-size: 12px;
  color: rgba(201, 169, 110, 0.45);
  line-height: 1.7;
}

/* GALLERY — White section */
.gallery {
  background: #ffffff;
  padding: 100px 0 100px;
}
.gallery-header {
  padding: 0 80px;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gallery-header .section-label {
  color: var(--gold-dark);
}
.gallery-header .section-title {
  color: var(--text);
}
.gallery-filter {
  display: flex;
  gap: 8px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(28, 18, 8, 0.2);
  color: rgba(28, 18, 8, 0.45);
  padding: 10px 24px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #1c1208;
  border-color: var(--gold);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.gallery-item:nth-child(5) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 18, 8, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-light);
}

/* FLOOR PLANS — Chocolate brown section */
.plans {
  background: #251608;
  color: var(--gold-light);
  padding: 100px 80px;
}
.plans .section-label {
  color: var(--gold);
}
.plans .section-title {
  color: var(--gold-light);
}
.plans-tabs {
  display: flex;
  gap: 4px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.plan-tab {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: rgba(201, 169, 110, 0.5);
  padding: 12px 32px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.plan-tab.active,
.plan-tab:hover {
  background: var(--gold);
  color: #1c1208;
  border-color: var(--gold);
}
.plans-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.plan-img {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 40px;
}
.plan-img img {
  width: 100%;
  filter: brightness(0.9) sepia(0.1);
}
.plan-details {
  padding: 20px 0;
}
.plan-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.plan-detail-key {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.45);
}
.plan-detail-val {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* AMENITIES — White section */
.amenities {
  background: #ffffff;
  padding: 100px 80px;
}
.amenities .section-label {
  color: var(--gold-dark);
}
.amenities .section-title {
  color: var(--text);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.amenity-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.75);
}
.amenity-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.45);
}
.amenity-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(28, 18, 8, 0.82) 0%, transparent 60%);
}
.amenity-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.4);
  flex-shrink: 0;
}
.amenity-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}
.amenity-desc {
  font-size: 12px;
  color: rgba(232, 213, 163, 0.65);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.amenity-card:hover .amenity-desc {
  max-height: 60px;
}

/* LOCATION — Deep chocolate brown */
.location {
  background: #2e1c0a;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.location-map {
  position: relative;
  min-height: 600px;
  background: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1200&q=80&fit=crop")
    center/cover;
}
.location-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 8, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-pin {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(201, 169, 110, 0.2);
  animation: pulse 2s infinite;
}
.location-pin-inner {
  width: 20px;
  height: 20px;
  background: #1c1208;
  border-radius: 50%;
  transform: rotate(45deg);
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 16px rgba(201, 169, 110, 0.2);
  }
  50% {
    box-shadow: 0 0 0 28px rgba(201, 169, 110, 0.1);
  }
}
.location-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2e1c0a;
}
.location-content .section-title {
  color: var(--gold-light);
}
.location-body {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(201, 169, 110, 0.55);
  font-weight: 300;
}
.location-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.location-hl {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(201, 169, 110, 0.06);
  border-left: 2px solid var(--gold);
}
.location-hl-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-hl-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(201, 169, 110, 0.55);
}
.location-hl-name {
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 4px;
}

/* CONTACT — White section */
.contact {
  background: #ffffff;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-visual {
  background: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=1200&q=80&fit=crop")
    center/cover;
  position: relative;
}
.contact-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.97) 100%
  );
}
.contact-form-wrap {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}
.contact-form-wrap .section-label {
  color: var(--gold-dark);
}
.contact-form-wrap .section-title {
  color: var(--text);
}
.form-group {
  margin-top: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #f9f6f2;
  border: 1px solid rgba(28, 18, 8, 0.12);
  color: var(--text);
  padding: 14px 16px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-field select option {
  background: #fff;
  color: var(--text);
}
.contact-form-wrap .btn-primary {
  background: var(--gold);
  color: #1c1208;
}
.contact-form-wrap .btn-primary:hover {
  background: var(--gold-dark);
}

/* FOOTER — Deepest chocolate */
footer {
  background: #0e0905;
  padding: 80px 80px 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(201, 169, 110, 0.4);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}
/* DEVELOPER SECTION */
.developer-section {
  background: linear-gradient(135deg, #1c1208 0%, #251608 100%);
  padding: 100px 80px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.developer-container {
  max-width: 900px;
}
.developer-content {
  margin-top: 48px;
}
.developer-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 243, 236, 0.85);
  letter-spacing: 0.3px;
}
.developer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px 0;
  padding: 40px;
  background: rgba(56, 34, 13, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
}
.dev-stat-item {
  text-align: center;
}
.dev-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.dev-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(201, 169, 110, 0.4);
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(201, 169, 110, 0.4);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(201, 169, 110, 0.3);
}
.footer-developer {
  font-size: 12px;
  color: rgba(201, 169, 110, 0.3);
}
.footer-developer span {
  color: var(--gold);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* DIVIDER */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

/* FLOATING ENQUIRY */
/* MOBILE STICKY BOTTOM BAR */
@media (max-width: 768px) {
  #mobileCta {
    display: flex !important;
  }
  body {
    padding-bottom: 72px;
  } /* prevent overlap */
  #back-to-top {
    bottom: 84px;
  }
  #scrollPop {
    bottom: 88px !important;
  }
  .hero-bg {
    background-position: center right !important;
  }

.float-enquiry {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  background: var(--gold);
  color: var(--dark);
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 999;
  cursor: pointer;
  transform-origin: right center;
  writing-mode: horizontal-tb;
}

/* HERO INNER — flex column to allow mobile stacking */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ══════════════════════════════════════════
   TABLET — 1024px and below
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 16px 30px;
  }
  nav.scrolled {
    padding: 12px 30px;
  }
  .hero-content {
    padding: 0 40px 80px;
    max-width: 580px;
  }
  .hero-title {
    font-size: clamp(44px, 6vw, 72px);
  }
  .hero-stats {
    right: 30px;
    gap: 36px;
    bottom: 40px;
  }
  .hero-stat-num {
    font-size: 32px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 55vh;
    min-height: 360px;
  }
  .about-content {
    padding: 70px 50px;
  }
  .features {
    padding: 80px 40px;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .gallery {
    padding: 80px 0 0;
  }
  .gallery-header {
    padding: 0 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item {
    height: 260px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .plans {
    padding: 80px 40px;
  }
  .plans-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plan-img {
    padding: 28px;
  }
  .amenities {
    padding: 80px 40px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 380px;
  }
  .location-content {
    padding: 60px 50px;
  }
  .location-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }
  .contact-visual {
    display: none;
  }
  .contact-form-wrap {
    padding: 60px 50px;
  }
  footer {
    padding: 60px 40px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ══════════════════════════════════════════
   MOBILE — 768px and below
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .fixed-cta-btn {
    right: -50px;
    top: 50%;
  }
  #fixed-cta-btn {
    padding: 12px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  nav {
    padding: 16px 20px;
  }
  .hero-inner {
    justify-content: flex-end;
  }
  .hero-stats {
    position: static;
    animation: none;
    opacity: 1;
    bottom: auto;
    right: auto;
    width: 100%;
    justify-content: space-around;
    background: rgba(28, 18, 8, 0.8);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 14px 20px;
    gap: 0;
  }
  nav.scrolled {
    padding: 12px 20px;
  }
  .nav-logo {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .hero {
    height: 100svh;
    align-items: flex-end;
  }
  .hero-content {
    padding: 0 24px 16px;
    max-width: 100%;
  }
  .hero-tag {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: clamp(40px, 11vw, 60px);
    margin-bottom: 18px;
    line-height: 1.1;
    font-weight: 400;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
    font-weight: 400;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 10px;
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    position: static;
    display: flex;
    gap: 0;
    justify-content: space-between;
    background: rgba(28, 18, 8, 0.75);
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    margin: 0;
    width: 100%;
  }
  .hero-stat-item {
    text-align: center;
  }
  .hero-stat-num {
    font-size: 24px;
  }
  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .ticker {
    padding: 12px 0;
  }
  .ticker-item {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 56vw;
    min-height: 240px;
  }
  .about-visual-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 18px 20px;
  }
  .about-visual-quote {
    font-size: 14px;
  }
  .about-content {
    padding: 48px 24px;
  }
  .about-body {
    font-size: 15px;
    max-width: 100%;
    font-weight: 400;
  }
  .about-architect {
    gap: 14px;
    padding-top: 24px;
    margin-top: 32px;
  }
  .about-architect-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .about-architect-text {
    font-size: 12px;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
  }
  .section-title {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 500;
  }
  .gold-divider {
    margin: 20px 0;
  }
  .features {
    padding: 56px 16px;
  }
  .features-header {
    margin-bottom: 36px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .feature-card {
    padding: 26px 18px;
  }
  .feature-num {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .feature-title {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
  }
  .feature-desc {
    font-size: 12px;
    font-weight: 400;
  }
  .gallery {
    padding: 56px 0 80px;
  }
  .gallery-header {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
  }
  .gallery-filter {
    flex-wrap: wrap;
    gap: 6px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .gallery-item {
    height: 220px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .plans {
    padding: 56px 20px;
  }
  .plans-tabs {
    flex-direction: column;
    gap: 6px;
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .plan-tab {
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    width: 100%;
    text-align: left;
  }
  .plans-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .plan-img {
    padding: 20px;
  }
  .plan-detail-item {
    padding: 14px 0;
  }
  .plan-detail-val {
    font-size: 18px;
  }
  .plan-detail-key {
    font-size: 10px;
  }
  .amenities {
    padding: 56px 20px;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 32px;
  }
  .amenity-card {
    height: 210px;
  }
  .amenity-name {
    font-size: 14px;
    font-weight: 500;
  }
  .amenity-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 260px;
  }
  .location-content {
    padding: 48px 24px;
  }
  .location-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }
  .location-hl {
    padding: 14px 16px;
  }
  .location-hl-text {
    font-size: 13px;
    font-weight: 400;
  }
  .contact {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }
  .contact-visual {
    display: none;
  }
  .contact-form-wrap {
    padding: 48px 24px;
  }
  .developer-section {
    padding: 56px 20px;
  }
  .developer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
    margin: 36px 0;
  }
  .dev-stat-num {
    font-size: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-field input,
  .form-field select {
    padding: 12px 14px;
    font-size: 13px;
  }
  footer {
    padding: 48px 24px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-logo {
    font-size: 28px;
    font-weight: 600;
  }
  /* MOBILE STICKY BOTTOM BAR */
  @media (max-width: 768px) {
    #mobileCta {
      display: flex !important;
    }
    body {
      padding-bottom: 72px;
    } /* prevent overlap */
    #back-to-top {
      bottom: 84px;
    }
    #scrollPop {
      bottom: 88px !important;
    }
  }

  .float-enquiry {
    display: none;
  }
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  #scrollPop {
    width: calc(100vw - 16px) !important;
    bottom: 16px !important;
  }
  #lb-prev {
    left: 8px;
    width: 44px;
    height: 44px;
  }
  #lb-next {
    right: 8px;
    width: 44px;
    height: 44px;
  }
  #lb-img {
    max-width: 95vw;
    max-height: 70vh;
  }
}

/* ══════════════════════════════════════════
   SMALL MOBILE — 480px and below
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-bg {
    background-position: -534px !important;
    filter: opacity(30);
  }
  .hero-title {
    font-size: clamp(34px, 10vw, 48px);
    font-weight: 400;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .feature-card {
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }
  .feature-card:hover {
    transform: none;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .amenity-card {
    height: 200px;
  }
  .plans-tabs {
    flex-direction: column;
  }
  .plan-tab {
    text-align: left;
  }
  #em-box {
    padding: 32px 20px !important;
  }
  .hero-content {
    padding: 0 20px 12px;
  }
  .about-content {
    padding: 36px 20px;
  }
  .features {
    padding: 44px 8px;
  }
  .gallery-header {
    padding: 0 16px;
  }
  .plans {
    padding: 44px 16px;
  }
  .amenities {
    padding: 44px 16px;
  }
  .location-content {
    padding: 36px 20px;
  }
  .contact-form-wrap {
    padding: 36px 20px;
  }
  .developer-section {
    padding: 44px 16px;
  }
  .developer-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    margin: 28px 0;
  }
  .dev-stat-num {
    font-size: 32px;
  }
  footer {
    padding: 36px 20px 24px;
  }
  .footer-col-title {
    margin-bottom: 16px;
  }
}

/* Additional styles for new JS features */
#lightbox {
  cursor: default;
}
#lb-prev:hover,
#lb-next:hover {
  background: rgba(201, 169, 110, 0.15);
}
.mm-link:hover {
  color: #c9a96e !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #c9a96e;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* Parallax hero bg */
.hero-bg {
  will-change: transform;
}

/* Counter animation */
.count-up {
  display: inline-block;
}

/* Active nav link highlight */
.nav-links a.active {
  color: #c9a96e !important;
}

/* Nav base bg fix */
nav {
  background: linear-gradient(
    180deg,
    rgba(28, 18, 8, 0.88) 0%,
    transparent 100%
  );
}

/* Gallery item hidden state */
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.gallery-item {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Floor plan data display */
.plan-detail-val {
  transition: opacity 0.3s ease;
}

/* Form validation states */
.form-field input.error,
.form-field select.error {
  border-color: #e05c5c !important;
}
.form-field input.valid,
.form-field select.valid {
  border-color: rgba(80, 180, 80, 0.6) !important;
}
.field-error {
  font-size: 11px;
  color: #e05c5c;
  margin-top: 4px;
  animation: fadeUp 0.3s ease forwards;
}

/* Progress bar for scroll */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #c9a96e, #e8d5a3);
  z-index: 9995;
  width: 0%;
  transition: width 0.1s linear;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: #c9a96e;
  color: #0d0d0d;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: #e8d5a3;
}

/* Custom cursor dot */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}
body:hover #cursor-dot {
  opacity: 1;
}

@media (hover: none) {
  #cursor-dot,
  #cursor-ring {
    display: none;
  }
}
