:root {
  --ink: #15201d;
  --muted: #64716d;
  --paper: #f6f1e8;
  --paper-soft: #fbf8f1;
  --forest: #203b34;
  --forest-deep: #0d1e1a;
  --sage: #9aa978;
  --copper: #b6784c;
  --sand: #dfcda7;
  --line: rgba(21, 32, 29, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(28, 35, 31, 0.16);
  --radius: 8px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 32, 29, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 32, 29, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  animation: gridDrift 28s linear infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sand), var(--copper));
  box-shadow: 0 0 18px rgba(223, 205, 167, 0.55);
  transition: width 0.12s linear;
}

.count-up {
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
  will-change: contents;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 88px 88px;
  }
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.container {
  max-width: 1180px;
}

/* Navigation */
nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  color: #fff;
  /* background: rgba(13, 30, 26, 0.42); */
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: navDrop 0.9s var(--ease-out) both;
  transition: background 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), top 0.35s var(--ease-soft);
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

nav.scrolled {
  top: 10px;
  background: rgba(13, 30, 26, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.logo {
  display: flex;
  align-items: center;
  min-width: 148px;
  text-decoration: none;
}

.logo img {
  width: 168px;
  height: auto;
  display: block;
  transition: transform 0.35s var(--ease-soft), filter 0.35s var(--ease-soft);
}

.logo:hover img {
  filter: drop-shadow(0 10px 22px rgba(223, 205, 167, 0.22));
  transform: translateY(-2px);
}

nav ul {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 6px;
  list-style: none;
  /* background: rgba(255, 255, 255, 0.08); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: var(--radius);
}

nav ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

nav ul li a::before {
  content: "";
  position: absolute;
  inset: auto 12px 6px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-soft);
}

nav ul li a:hover,
nav ul li a:focus-visible {
  color: var(--forest-deep);
  background: var(--sand);
  outline: 0;
  transform: translateY(-1px);
}

nav ul li a:hover::before,
nav ul li a:focus-visible::before {
  opacity: 0.45;
  transform: scaleX(1);
}

.btn-top,
.btn-primary,
.btn-outline,
.btn-premium,
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), background 0.35s var(--ease-soft), color 0.35s var(--ease-soft);
}

.btn-top::after,
.btn-primary::after,
.btn-outline::after,
.btn-premium::after,
.btn-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 44%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease-soft);
}

.btn-top:hover::after,
.btn-primary:hover::after,
.btn-outline:hover::after,
.btn-premium:hover::after,
.btn-luxury:hover::after {
  transform: translateX(130%);
}

.btn-top {
  color: var(--forest-deep);
  background: var(--sand);
  white-space: nowrap;
}

.btn-top:hover,
.btn-primary:hover,
.btn-premium:hover,
.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-self: end;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s ease;
}

/* Shared */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(36px) scale(0.985);
  transition: opacity 1s var(--ease-soft), filter 1s var(--ease-soft), transform 1s var(--ease-soft);
}

.reveal.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.nj-sub-badge,
.about-tag,
.subtitle-premium,
.label-meta,
.nj-contact-lbl {
  display: block;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nj-main-heading {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.08;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.btn-primary {
  color: var(--forest-deep);
  background: linear-gradient(135deg, #f0d99f 0%, #c8944f 55%, #f4dfaa 100%);
  border-color: rgba(255, 233, 178, 0.72);
  box-shadow: 0 16px 38px rgba(200, 148, 79, 0.24);
}

.btn-primary:hover {
  color: var(--forest-deep);
  background: linear-gradient(135deg, #f6e3af 0%, #d49c54 55%, #fff0be 100%);
  box-shadow: 0 20px 48px rgba(200, 148, 79, 0.34);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  color: var(--forest-deep);
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 104px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(13, 30, 26, 0.96), rgba(32, 59, 52, 0.84)),
    url("../image/banner/b4.png") center / cover fixed;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: min(360px, calc(100% - 48px));
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  transform-origin: center;
  animation: lineGrowCentered 1.5s 0.8s var(--ease-out) both;
}

@keyframes lineGrowCentered {
  from {
    transform: translateX(-50%) scaleX(0);
  }

  to {
    transform: translateX(-50%) scaleX(1);
  }
}

.hero::after {
  content: "Great Value Ekanam";
  position: absolute;
  right: max(18px, calc((100vw - 1260px) / 2));
  top: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5.4vw, 82px);
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 830px;
  text-align: left;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.82) 0%, rgba(8, 18, 16, 0.58) 48%, rgba(8, 18, 16, 0.38) 100%),
    radial-gradient(circle at 72% 34%, rgba(223, 205, 167, 0.14), transparent 30%),
    url("../image/banner/b4.png") center / cover,
    var(--forest-deep);
}

.hero-slide {
  background-position: center center;
  background-size: cover;
  opacity: 0;
  filter: saturate(1.02) contrast(1.06);
  transform: scale(1.1);
  will-change: opacity, transform;
  animation: heroSlider 21s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.84) 0%, rgba(8, 18, 16, 0.58) 43%, rgba(8, 18, 16, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 18, 16, 0.74) 0%, rgba(8, 18, 16, 0.2) 46%, rgba(8, 18, 16, 0.45) 100%);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 250, 240, 0.14), transparent 20%),
    linear-gradient(120deg, rgba(223, 205, 167, 0.1), transparent 42%);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.hero-slide-1 {
  background-image: url("../image/banner/b4.png");
  background-position: center 46%;
}

.hero-slide-2 {
  background-image: url("../image/banner/b5.png");
  animation-delay: 7s;
  background-position: center 42%;
}

.hero-slide-3 {
  background-image: url("../image/banner/b2.png");
  animation-delay: 14s;
  background-position: center 48%;
}

@keyframes heroSlider {
  0% {
    opacity: 0;
    transform: scale(1.1) translate3d(0, 0, 0);
  }

  7% {
    opacity: 1;
  }

  27% {
    opacity: 1;
  }

  34% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1.02) translate3d(-1.5%, 0, 0);
  }
}

.sub-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.accent-font {
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero h1 {
  position: relative;
  max-width: 850px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  text-align: left;
}

.hero p {
  position: relative;
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.65;
  text-align: left;
}

.hero-residence-card {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 390px);
  padding: 30px;
  background: rgba(246, 241, 232, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft);
}

.hero-residence-card:hover {
  border-color: rgba(223, 205, 167, 0.46);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform: translateY(-8px);
}

.hero-residence-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(223, 205, 167, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.hero-residence-card span,
.hero-residence-card small {
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-residence-card strong {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 94px;
  font-weight: 600;
  line-height: 0.9;
  background: linear-gradient(120deg, #fff 0%, var(--sand) 45%, #fff 90%);
  -webkit-background-clip: text;
  background-size: 220% 100%;
  color: transparent;
  animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
  to {
    background-position: 220% 0;
  }
}

.hero-residence-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 500;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero-mini-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: background 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}

.hero-mini-grid div:hover {
  background: rgba(223, 205, 167, 0.16);
  transform: translateY(-3px);
}

.hero-mini-grid b {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.hero-mini-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 1px;
}

.signature-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -52px auto 0;
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(28, 35, 31, 0.14);
  animation: floatUp 0.9s 0.25s var(--ease-out) both;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signature-strip div {
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 22px 15px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}

.signature-strip div::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.45s var(--ease-soft);
}

.signature-strip div:hover {
  background: rgba(154, 169, 120, 0.12);
  transform: translateY(-2px);
}

.signature-strip div:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.signature-strip div:last-child {
  border-right: 0;
}

.signature-strip>div>span {
  display: block;
  margin-bottom: 14px;
  color: #0c1a16cc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
}

.signature-strip strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.signature-strip .fact-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(54px, 4.8vw, 76px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

.signature-strip .fact-join,
.signature-strip .fact-prefix {
  color: var(--copper);
  font-size: 0.52em;
  font-weight: 700;
  line-height: 1;
}

.signature-strip .fact-unit {
  display: block;
  margin-top: 18px;
  color: #0d1e1a;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

/* About */
.about-container {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 60px 24px 60px;
  overflow: hidden;
}

.about-container::before {
  content: "";
  position: absolute;
  inset: 64px 0 auto;
  height: 48%;
  background:
    linear-gradient(90deg, rgba(32, 59, 52, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.82));
  pointer-events: none;
}

.about-container::after {
  content: "EKANAM";
  position: absolute;
  right: -26px;
  top: 122px;
  color: rgba(21, 32, 29, 0.035);
  font-family: var(--font-display);
  font-size: clamp(96px, 16vw, 230px);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.section-kicker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 120px minmax(0, 620px);
  gap: 30px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 34px;
  color: var(--muted);
}

.section-kicker span {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 78px;
  line-height: 0.8;
  background: linear-gradient(180deg, var(--copper), var(--forest));
  -webkit-background-clip: text;
  color: transparent;
}

.section-kicker p {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.about-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.78fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-image-box {
  position: relative;
  min-height: 640px;
  height: min(68vw, 680px);
  overflow: hidden;
  border-radius: 14px;
  background: var(--forest-deep);
  box-shadow: 0 34px 90px rgba(28, 35, 31, 0.2);
  transform: translateY(18px);
  transition: transform 0.8s var(--ease-soft), box-shadow 0.8s var(--ease-soft), filter 0.8s var(--ease-soft);
}

.about-image-box::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 10px;
  pointer-events: none;
}

.about-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(13, 30, 26, 0.76)),
    radial-gradient(circle at 30% 20%, rgba(223, 205, 167, 0.16), transparent 34%);
  pointer-events: none;
}

.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-soft), filter 1.2s var(--ease-soft);
}

.about-image-box:hover {
  box-shadow: 0 42px 110px rgba(28, 35, 31, 0.26);
  transform: translateY(6px);
}

.about-image-box:hover .about-video {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1);
}

.about-media-caption {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 38px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 420px;
  color: #fff;
}

.about-media-caption span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-media-caption strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.04;
}

.about-floating-card {
  position: relative;
  z-index: 2;
  margin-left: -96px;
  padding: clamp(34px, 4vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(246, 241, 232, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(182, 120, 76, 0.16), transparent 32%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 32px 86px rgba(28, 35, 31, 0.14);
  backdrop-filter: blur(18px);
  transition: transform 0.55s var(--ease-soft), box-shadow 0.55s var(--ease-soft), background 0.55s var(--ease-soft);
}

.about-floating-card:hover {
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 38px 100px rgba(28, 35, 31, 0.18);
  transform: translateY(-6px);
}

.about-floating-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(182, 120, 76, 0.18), transparent 65%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.about-floating-card::after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 30px;
  width: 3px;
  background: linear-gradient(var(--copper), var(--sage));
  border-radius: 999px;
}

.about-floating-card h2 {
  max-width: 540px;
  margin: 10px 0 15px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.about-floating-card p {
  max-width: 600px;
  margin-bottom: 20px;
  color: #20302c;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.about-signature span {
  display: block;
  color: #1e2e29c7;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0px;
  line-height: 1.35;
  /* text-transform: uppercase; */
}

.about-signature {
  margin: 0px 20px 20px 0;
  padding-left: 18px;
  border-left: 3px solid var(--copper);
}

/* Highlights */
.highlights-section {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 60px) 24px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 32, 29, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 32, 29, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 14% 16%, rgba(154, 169, 120, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f6efe2 100%);
  background-size: 92px 92px, 92px 92px, auto, auto;
}

.highlights-section::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: -18vw;
  width: 46vw;
  height: 46vw;
  background:
    radial-gradient(circle, rgba(13, 30, 26, 0.11), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}

.highlights-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.highlights-header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.highlights-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.95;
}

.highlights-header p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.55;
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(360px, 1fr);
  column-gap: clamp(28px, 4vw, 48px);
  row-gap: 0;
  align-items: start;
}

.bento-grid::before {
  content: "";
  grid-row: span 6;
  min-height: 500px;
  position: sticky;
  top: 104px;
  display: block;
  background:
    linear-gradient(0deg, rgba(13, 30, 26, 0.7), rgba(13, 30, 26, 0.08) 58%, rgba(13, 30, 26, 0.18)),
    url("../image/banner/b3.png") center / cover;
  border-radius: 18px;
  box-shadow: 0 30px 72px rgba(28, 35, 31, 0.14);
}

.highlight-card {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: clamp(12px, 1.6vw, 22px);
  align-items: baseline;
  padding: clamp(14px, 1.8vw, 22px) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 32, 29, 0.14);
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s var(--ease-soft), border-color 0.4s ease;
}

.highlight-card:hover {
  border-color: rgba(182, 120, 76, 0.42);
  transform: translateX(6px);
}

.highlight-card::before {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1;
  opacity: 0.75;
}

.highlight-card:nth-child(1)::before {
  content: "01";
}

.highlight-card:nth-child(2)::before {
  content: "02";
}

.highlight-card:nth-child(3)::before {
  content: "03";
}

.highlight-card:nth-child(4)::before {
  content: "04";
}

.highlight-card:nth-child(5)::before {
  content: "05";
}

.highlight-card:nth-child(6)::before {
  content: "06";
}

.highlight-card:nth-child(7)::before {
  content: "07";
}

.c-medium {
  grid-column: auto;
}

.c-wide {
  grid-column: auto;
}

.c-hero {
  grid-column: auto;
  grid-row: auto;
}

.c-hero::before {
  content: none;
}

.c-tall {
  grid-column: auto;
  grid-row: auto;
  color: var(--ink);
}

.highlight-card:nth-child(6) {
  grid-column: auto;
}

.highlight-card:nth-child(7) {
  grid-column: auto;
}

.highlight-card .icon {
  display: none;
}

.highlight-card h3 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.02;
  transition: color 0.35s ease, transform 0.35s var(--ease-soft);
}

.highlight-card:hover h3 {
  color: var(--copper);
  transform: translateX(4px);
}

.c-hero:hover h3,
.c-tall:hover h3 {
  color: var(--copper);
}

.c-hero .icon,
.c-tall .icon {
  display: none;
}

.c-hero {
  padding-top: 0;
}

.lifestyle-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(280px, 0.56fr) minmax(230px, 0.48fr);
  gap: 18px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 98px 24px 18px;
}

.lifestyle-editorial::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 58%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(32, 59, 52, 0.08), rgba(182, 120, 76, 0.07));
  border-radius: 18px;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  margin-top: 42px;
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(13, 30, 26, 0.98), rgba(32, 59, 52, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(28, 35, 31, 0.16);
  position: relative;
  overflow: hidden;
}

.editorial-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(223, 205, 167, 0.2);
  border-radius: 50%;
  transition: transform 0.8s var(--ease-soft);
}

.editorial-copy:hover::after {
  transform: scale(1.35);
}

.editorial-copy .nj-main-heading {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.editorial-copy p {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.editorial-panel {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(270px, 0.88fr) minmax(230px, 0.74fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.editorial-stat {
  min-height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(28, 35, 31, 0.08);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), border-color 0.45s var(--ease-soft);
}

.editorial-stat:hover {
  border-color: rgba(182, 120, 76, 0.36);
  box-shadow: 0 24px 58px rgba(28, 35, 31, 0.14);
  transform: translateY(-6px);
}

.editorial-stat:first-child {
  grid-row: span 2;
  min-height: 570px;
  justify-content: flex-end;
  background-image:
    linear-gradient(0deg, rgba(13, 30, 26, 0.82), rgba(13, 30, 26, 0.12)),
    url("../image/img/p1.png");
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-26px);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), filter 0.45s ease;
}

.editorial-stat:nth-child(2),
.editorial-stat:nth-child(3) {
  transform: translateY(62px);
}

.editorial-stat:nth-child(2):hover,
.editorial-stat:nth-child(3):hover {
  transform: translateY(52px);
}

.editorial-stat:first-child:hover {
  transform: translateY(-34px);
  filter: saturate(1.08) contrast(1.04);
}

.editorial-stat strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 0.88;
}

.editorial-stat span {
  margin-top: 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  line-height: 1.35;
  text-transform: uppercase;
}

.editorial-stat small {
  display: block;
  margin-top: 18px;
  color: currentColor;
  font-size: 13px;
  opacity: 0.58;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.c-hero p,
.c-tall p {
  color: rgba(255, 255, 255, 0.72);
}

/* Amenities */
.nj-amenities-wrapper {
  position: relative;
  overflow: hidden;
  padding: 50px 24px 50px;
  background: #1f2f2a;
}

.nj-amenities-wrapper::before {
  content: "AMENITIES";
  position: absolute;
  left: 50%;
  top: 38px;
  color: rgba(21, 32, 29, 0.035);
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 700;
  line-height: 0.85;
  pointer-events: none;
  transform: translateX(-50%);
}

.amenities-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.amenities-header {
  display: block;
  max-width: 860px;
  margin: 0 auto 44px;
  padding: 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.amenities-header .nj-main-heading {
  max-width: 860px;
  margin: 0px auto 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.02;
  color: #f7f0e3;
  text-wrap: balance;
}

.amenities-header p {
  max-width: 560px;
  margin: 22px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(21, 32, 29, 0.12);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.amenities-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 18px;
  align-items: stretch;
}

.nj-luxury-card {
  position: relative;
  display: block;
  min-height: 260px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(21, 32, 29, 0.1);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(28, 35, 31, 0.1);
  text-decoration: none;
  transform-style: preserve-3d;
  isolation: isolate;
  transition: transform 0.55s var(--ease-soft), box-shadow 0.55s var(--ease-soft), border-color 0.55s var(--ease-soft);
}

.amenity-feature {
  grid-column: span 6;
  grid-row: span 3;
  min-height: 570px;
  margin-top: 0;
}

.amenity-side-panel {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  min-height: auto;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 30, 26, 0.98), rgba(32, 59, 52, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(28, 35, 31, 0.12);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft);
}

.amenity-side-panel:hover {
  box-shadow: 0 30px 76px rgba(28, 35, 31, 0.18);
  transform: translateY(-8px);
}

.amenity-card {
  min-height: auto;
}

.amenity-card-active {
  grid-column: span 3;
  grid-row: span 1;
}

.amenity-card-calm {
  grid-column: span 3;
  grid-row: span 1;
}

.amenity-card-open {
  grid-column: span 3;
  grid-row: span 1;
}

.amenity-card-club {
  grid-column: span 6;
  grid-row: span 1;
}

.amenity-side-panel::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(223, 205, 167, 0.24);
  border-radius: 50%;
}

.amenity-side-panel span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.amenity-side-panel strong {
  /* margin-top: 12px; */
  color: #fff;
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 700;
  line-height: 0.9;
}

.amenity-side-panel p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.nj-image-holder,
.nj-card-img {
  width: 100%;
  height: 100%;
}

.nj-image-holder {
  position: absolute;
  inset: 0;
}

.nj-card-img {
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.75s var(--ease-soft), filter 0.75s var(--ease-soft);
}

.nj-luxury-card:hover .nj-card-img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.08);
}

.nj-luxury-card:hover {
  border-color: rgba(182, 120, 76, 0.28);
  box-shadow: 0 34px 90px rgba(28, 35, 31, 0.18);
  transform: translateY(-10px) scale(1.01);
}

.nj-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(13, 30, 26, 0.9), rgba(13, 30, 26, 0.18) 54%, transparent),
    linear-gradient(90deg, rgba(13, 30, 26, 0.24), transparent);
  transform: translateY(0);
  transition: background 0.45s var(--ease-soft);
}

.amenity-index {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--forest-deep);
  background: rgba(255, 250, 240, 0.88);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.nj-card-overlay p {
  margin: 0 0 6px;
  color: #dfcda7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.25;
  text-transform: uppercase;
}

.nj-card-overlay h4 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-wrap: balance;
}

.fancybox__content {
  max-width: 820px !important;
  max-height: 76vh !important;
  border-radius: var(--radius);
}

/* Price */
.price-section {
  position: relative;
  overflow: hidden;
  padding: 40px 24px 60px;
  background:
    linear-gradient(135deg, rgba(246, 241, 232, 0.96), rgba(255, 250, 240, 0.9)),
    url("../image/banner/b1.png") center / cover;
}

.price-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 32, 29, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 32, 29, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.pricing-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-intro {
  max-width: 1040px;
  margin: 0 auto 42px;
  text-align: center;
}

.pricing-intro .nj-main-heading {
  max-width: 1040px;
  margin: 5px auto 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.pricing-intro .nj-sub-badge {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 12px;
}

.pricing-intro .nj-sub-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 2px;
  background: var(--copper);
  transform: translateX(-50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.2vw, 42px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 30, 26, 0.98), rgba(32, 59, 52, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 46px 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 26px 72px rgba(28, 35, 31, 0.18);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), border-color 0.45s var(--ease-soft);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(223, 205, 167, 0.14);
  border-radius: 10px;
  pointer-events: none;
}

.price-card::after {
  content: "";
  position: absolute;
  top: -25%;
  right: -18%;
  width: 45%;
  height: 150%;
  background: linear-gradient(180deg, rgba(223, 205, 167, 0.18), rgba(223, 205, 167, 0.02));
  transform: rotate(12deg);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-soft);
}

.featured-price {
  background:
    linear-gradient(145deg, rgba(15, 34, 29, 0.98), rgba(47, 74, 61, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.price-card:hover {
  border-color: rgba(223, 205, 167, 0.42);
  transform: translateY(-8px);
  box-shadow: 0 34px 92px rgba(13, 30, 26, 0.28);
}

.price-card:hover::after {
  opacity: 0.85;
  transform: rotate(12deg) translateX(-14px);
}

.price-card-top,
.price-meta-grid,
.price-core,
.price-card .btn-premium {
  position: relative;
  z-index: 1;
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.unit-type {
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--forest-deep);
  background: rgba(223, 205, 167, 0.92);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-core {
  padding: 25px 0 15px;
}

.price-tag {
  margin: 10px 0 4px;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 0.9;
  transition: transform 0.35s var(--ease-soft);
}

.price-card:hover .price-tag {
  transform: translateX(4px);
}

.size-info {
  color: #fff;
  display: block;
  margin-top: 5px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.1;
}

.price-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.price-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-premium {
  width: fit-content;
  min-width: 176px;
  font-weight: 700 !important;
  margin-top: 30px;
  color: var(--forest-deep) !important;
  background: linear-gradient(135deg, #f0d99f 0%, #c8944f 55%, #f4dfaa 100%);
  box-shadow: 0 18px 40px rgba(200, 148, 79, 0.22);
}

.btn-premium:hover {
  background: linear-gradient(135deg, #f6e3af 0%, #d49c54 55%, #fff0be 100%);
}

/* Project plan */
.ep-global-wrapper {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.ep-ambient-layer {
  display: none;
}

.ep-main-wrapper {
  position: relative;
  padding: 104px 24px;
  background:
    linear-gradient(120deg, rgba(13, 30, 26, 0.96), rgba(32, 59, 52, 0.84)),
    url("../image/banner/b3.png") center / cover fixed;
}

.ep-main-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.ep-content-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.ep-section-header {
  /* display: grid; */
  /* grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr); */
  gap: clamp(24px, 5vw, 76px);
  /* align-items: end; */
  /* margin-bottom: 34px; */
}

.ep-hero-heading {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 0.94;
  text-align: left;
}

.ep-section-header p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.ep-info-sync-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: 20px;
  align-items: start;
}

.ep-specs-layout {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.ep-spec-item,
.ep-payment-box {
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  backdrop-filter: blur(16px);
}

.ep-spec-item {
  min-height: 140px;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: transform 0.42s var(--ease-soft), border-color 0.42s var(--ease-soft), background 0.42s var(--ease-soft);
}

.ep-spec-item:hover {
  border-color: rgba(223, 205, 167, 0.5);
  background: rgba(223, 205, 167, 0.12);
  transform: translateY(-4px);
}

.ep-spec-span-full {
  grid-column: span 6;
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(223, 205, 167, 0.18), rgba(255, 250, 240, 0.08)),
    rgba(255, 250, 240, 0.08);
}

.ep-spec-key {
  display: block;
  margin-bottom: 14px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.ep-spec-data {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}

.ep-payment-box {
  position: sticky;
  top: 110px;
  padding: 30px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.ep-plan-top,
.ep-timeline-row,
.nj-footer-btm {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

.ep-plan-top {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.ep-plan-top h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
}

.ep-plan-badge,
.ep-step-val {
  color: var(--sand);
  font-weight: 900;
}

.ep-plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0px 10px;
  color: var(--forest-deep);
  background: var(--sand);
  border-radius: 999px;
  font-size: 15px;
}

.ep-timeline-stack {
  display: grid;
  gap: 0;
  position: relative;
}

.ep-timeline-stack::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 17px;
  left: 5px;
  width: 1px;
  background: rgba(223, 205, 167, 0.32);
}

.ep-timeline-node {
  position: relative;
  padding: 0 0 0 26px;
}

.ep-timeline-node::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 1px;
  width: 9px;
  height: 9px;
  background: var(--sand);
  border-radius: 50%;
}

.ep-timeline-row {
  gap: 16px;
  min-height: 58px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.ep-step-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.ep-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.ep-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.35s var(--ease-soft), filter 0.35s ease, background 0.35s ease;
}

.ep-cta-card:hover {
  filter: brightness(1.06);
  transform: translateY(-4px);
}

.ep-cta-solid {
  color: var(--forest-deep);
  background: linear-gradient(135deg, #f0d99f 0%, #c8944f 55%, #f4dfaa 100%);
}

.ep-cta-outline {
  color: #fff;
  border: 1px solid var(--sand);
  background: rgba(255, 255, 255, 0.04);
}

/* Location */
.location-advantages-section {
  position: relative;
  overflow: hidden;
  padding: 96px 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(246, 241, 232, 0.96)) !important;
}

.location-advantages-section::before {
  content: "LOCATION";
  position: absolute;
  right: -24px;
  top: 70px;
  color: rgba(21, 32, 29, 0.035);
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.location-advantages-section .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.top-location-image {
  min-height: 390px;
  border-radius: 18px !important;
  box-shadow: 0 30px 90px rgba(28, 35, 31, 0.18) !important;
}

.top-location-image img {
  height: 430px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
  transition: transform 0.8s var(--ease-soft), filter 0.8s var(--ease-soft);
}

.top-location-image:hover img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.035);
}

.image-overlay {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: flex-end !important;
  background:
    linear-gradient(90deg, rgba(13, 30, 26, 0.82), rgba(13, 30, 26, 0.18) 58%, transparent),
    linear-gradient(0deg, rgba(13, 30, 26, 0.72), transparent 58%);
}

.bg-blur {
  /* min-width: min(340px, 100%); */
  padding: 28px !important;
  background: rgba(13, 30, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px !important;
  backdrop-filter: blur(16px);
}

.bg-blur h3 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600 !important;
  line-height: 1;
}

.bg-blur p {
  margin: 10px 0 0;
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.location-advantages-section .row.text-start {
  align-items: end;
  margin: 0 0 0px !important;
}

.location-advantages-section #nj-entrance {
  /* display: grid; */
  /* grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr); */
  /* gap: clamp(24px, 5vw, 72px); */
  align-items: end;
  width: 100%;
}

.location-advantages-section #nj-entrance .nj-sub-badge {
  grid-column: 1 / -1;
}

.location-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.location-advantages-section .row.g-4 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px !important;
  margin: 0 !important;
}

.location-advantages-section .row.g-4>[class*="col-"] {
  width: auto;
  padding: 0;
}

.location-advantages-section .row.g-4>[class*="col-"]:nth-child(-n+3) {
  grid-column: span 2;
}

.location-advantages-section .row.g-4>[class*="col-"]:nth-child(4) {
  grid-column: span 2;
}

.location-advantages-section .row.g-4>[class*="col-"]:nth-child(5) {
  grid-column: span 4;
}

.location-card {
  height: 100%;
  background: #fffaf0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(28, 35, 31, 0.06) !important;
  position: relative;
  overflow: hidden;
  padding: 28px !important;
  transition: transform 0.42s var(--ease-soft), box-shadow 0.42s var(--ease-soft), border-color 0.42s var(--ease-soft);
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--copper), var(--sage));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.location-card:hover {
  border-color: rgba(182, 120, 76, 0.45) !important;
  box-shadow: 0 26px 64px rgba(28, 35, 31, 0.12) !important;
  transform: translateY(-7px);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card h5 {
  color: var(--forest) !important;
  border-bottom-color: var(--line) !important;
  margin-bottom: 20px !important;
  padding-bottom: 18px !important;
  font-size: 15px !important;
  letter-spacing: 3px;
}

.location-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.km-text {
  flex: 0 0 auto;
  color: var(--copper);
  font-weight: 900;
}

/* Builder */
.builder-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(84px, 8vw, 122px) 24px;
  background:
    radial-gradient(circle at 12% 24%, rgba(223, 205, 167, 0.1), transparent 30%),
    linear-gradient(135deg, #071713 0%, #112a24 52%, #06110f 100%);
}

.builder-section::after {
  content: "GREAT VALUE";
  position: absolute;
  right: max(20px, calc((100vw - 1220px) / 2));
  top: 34px;
  z-index: 2;
  color: rgba(255, 250, 240, 0.035);
  font-family: var(--font-display);
  font-size: clamp(70px, 12vw, 180px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.video-wrapper,
.video-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-wrapper video,
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.builder-section .video-wrapper video {
  opacity: 0.22;
  filter: saturate(0.82) contrast(1.08) blur(1px);
}

.overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.95), rgba(13, 30, 26, 0.86) 45%, rgba(7, 18, 15, 0.94)),
    radial-gradient(circle at 72% 28%, rgba(223, 205, 167, 0.14), transparent 28%),
    rgba(0, 0, 0, 0.28);
}

.builder-content {
  position: relative;
  z-index: 3;
  color: #fff;
  width: 100%;
  max-width: 1220px;
  padding-block: 0 !important;
}

.builder-content .row {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px) !important;
  align-items: center !important;
}

.builder-content [class*="col-"] {
  width: auto;
  max-width: none;
  padding: 0;
}

.border-gold {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 46px) !important;
  overflow: hidden;
  border: 1px solid rgba(223, 205, 167, 0.2) !important;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.04)),
    linear-gradient(180deg, rgba(13, 30, 26, 0.64), rgba(13, 30, 26, 0.26));
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
  transition: transform 0.45s var(--ease-soft), background 0.45s ease, border-color 0.45s ease;
}

.border-gold::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--sand), var(--copper), transparent);
  border-radius: 999px;
}

.border-gold::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(223, 205, 167, 0.16);
  border-radius: 50%;
}

.border-gold:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(223, 205, 167, 0.6) !important;
  transform: translateY(-6px);
}

.border-gold h2 {
  color: var(--sand);
  font-family: var(--font-display);
  font-size: clamp(88px, 9vw, 138px);
  font-weight: 700 !important;
  line-height: 0.82;
  letter-spacing: -1px;
}

.border-gold p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800 !important;
  line-height: 1.5;
}

.builder-content .ps-lg-4 {
  padding-left: 0 !important;
  max-width: 820px;
}

.builder-content .nj-main-heading {
  max-width: 760px;
  margin: 14px 0 22px !important;
  color: #fff !important;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  text-wrap: balance;
}

.builder-content .lead {
  max-width: 820px;
  color: rgba(230, 237, 234, 0.78);
  font-size: 15px !important;
  line-height: 1.86;
  text-align: left !important;
}

.builder-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 30px;
}

.builder-proof-grid span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(223, 205, 167, 0.18);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease-soft), border-color 0.35s ease, background 0.35s ease;
}

.builder-proof-grid span:hover {
  background: rgba(223, 205, 167, 0.1);
  border-color: rgba(223, 205, 167, 0.38);
  transform: translateY(-4px);
}

.builder-content .border-top {
  border-top-color: rgba(223, 205, 167, 0.22) !important;
  padding-top: 28px !important;
}

.builder-content h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.25;
}

.text-light-gray {
  color: rgba(255, 255, 255, 0.72);
}

.gold-accent {
  color: var(--sand) !important;
}

.font-italic {
  font-style: italic;
}

/* Contact */
.split-contact-section {
  position: relative;
  padding: clamp(34px, 5vw, 58px) 24px;
  overflow: hidden;
  background: #f8f3ea;
}

.split-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.split-contact-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: -16vw;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(223, 205, 167, 0.12), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}

.split-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.contact-panel {
  overflow: hidden;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  background: #151a22 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px !important;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35) !important;
  transition: box-shadow 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
}

.contact-panel>[class*="col-"] {
  width: auto;
  max-width: none;
}

.contact-panel:hover {
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42) !important;
  transform: translateY(-4px);
}

.contact-image-col {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  isolation: isolate;
  background:
    url("../img/b6.jpeg") center / cover;
  transition: filter 0.6s var(--ease-soft), background-size 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
  background-size: auto, auto, 108%;
}

.contact-image-col::before {
  content: none;
}

.contact-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(21, 26, 34, 0.7) 86%, #151a22 100%);
  pointer-events: none;
}

.contact-panel:hover .contact-image-col {
  filter: saturate(1.08) contrast(1.05);
  background-size: auto, auto, 114%;
}

.contact-visual-content {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 24px 26px 24px 24px;
  color: #fff;
  background: rgba(4, 12, 10, 0.68);
  border-left: 3px solid #d1a95c;
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(8px);
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-visual-content h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

.contact-visual-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

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

.contact-mini-list div {
  padding: 16px;
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-mini-list strong,
.contact-mini-list span {
  display: block;
}

.contact-mini-list strong {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.contact-mini-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0e1e1b;
  padding: clamp(38px, 5vw, 66px) clamp(34px, 5vw, 68px) !important;
}

.contact-form-heading {
  max-width: 760px;
}

.contact-form-heading .nj-main-heading {
  margin: 14px 0 14px !important;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1;
}

.contact-form-heading p {
  max-width: 760px;
  margin: 0;
  color: rgba(218, 229, 227, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.contact-form-col form .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 26px;
  /* margin-top: 34px; */
}

.contact-form-col .form-floating {
  margin-bottom: 0 !important;
}

.contact-form-col .form-floating>.aesthetic-input:focus~label,
.contact-form-col .form-floating>.aesthetic-input:not(:placeholder-shown)~label {
  color: rgba(223, 205, 167, 0.9) !important;
}

.aesthetic-input {
  height: 54px !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-soft);
}

.aesthetic-input:focus {
  border-color: #d1a95c !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}

.form-floating>label,
.form-check-label {
  color: rgba(220, 228, 226, 0.58) !important;
}

.contact-form-col .form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: flex-start;
  margin: 4px 0 4px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-form-col .form-check-input {
  float: none;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

.contact-form-col .form-check-label {
  font-size: 14px !important;
  line-height: 1.45;
  color: #f8f3eab8 !important;
}

.form-check-input:checked {
  background-color: #0c5a86;
  border-color: #8cb7ff;
}

.btn-luxury {
  width: 100%;
  min-height: 54px;
  color: #101820 !important;
  background: linear-gradient(135deg, #d9b665, #c79a42) !important;
  border-radius: 7px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.qr-wrapper {
  display: inline-block;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}

.qr-wrapper:hover {
  box-shadow: 0 16px 34px rgba(28, 35, 31, 0.12) !important;
  transform: scale(1.04);
}

.contact-form-col>.mt-4 {
  margin-top: 46px !important;
  padding-top: 24px !important;
  border-top-color: rgba(255, 255, 255, 0.62) !important;
}

.contact-form-col>.mt-4 .row {
  gap: 14px;
}

.contact-form-col>.mt-4 p {
  color: #d1a95c !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 2.4px !important;
}

.contact-form-col>.mt-4 h6 {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.8px;
}

/* Footer */
.nj-footer-wrap {
  padding: 48px 0 24px;
  color: #fff;
  background: var(--forest-deep);
}

.nj-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nj-contact-box {
  display: flex;
  flex-direction: column;
}

.nj-contact-val {
  color: #fff;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
}

.nj-contact-val:hover {
  color: var(--sand);
}

.nj-disc-text {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
  text-align: justify;
  padding: 0px 20px;
}

.nj-footer-btm {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

/* Bootstrap helpers */
.shadow-sm {
  box-shadow: none !important;
}

.rounded,
.rounded-4 {
  border-radius: var(--radius) !important;
}

.tracking-widest {
  letter-spacing: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
  nav {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: -18px;
    right: -100%;
    width: min(380px, 82vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: rgba(13, 30, 26, 0.98);
    border-radius: 0;
    border: 0;
    transition: right 0.35s ease;
  }

  nav ul.active {
    right: -16px;
  }

  nav ul li a {
    min-width: 210px;
    justify-content: center;
    font-size: 15px;
  }

  .btn-top {
    display: none;
  }
}

@media (max-width: 1024px) {

  .about-wrapper,
  .ep-info-sync-grid,
  .highlights-header,
  .hero-shell,
  .lifestyle-editorial {
    grid-template-columns: 1fr;
  }

  .ep-section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-advantages-section #nj-entrance {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-advantages-section .row.g-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-advantages-section .row.g-4>[class*="col-"]:nth-child(n) {
    grid-column: span 1;
  }

  .location-advantages-section .row.g-4>[class*="col-"]:nth-child(5) {
    grid-column: span 2;
  }

  .ep-payment-box {
    position: relative;
    top: auto;
  }

  .builder-content .row {
    grid-template-columns: 1fr;
  }

  .border-gold {
    min-height: 260px;
    max-width: 520px;
  }

  .editorial-copy {
    min-height: 320px;
  }

  .editorial-panel {
    grid-column: span 1;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
  }

  .editorial-stat:nth-child(2),
  .editorial-stat:nth-child(3) {
    transform: translateY(0);
  }

  .editorial-stat:nth-child(2):hover,
  .editorial-stat:nth-child(3):hover {
    transform: translateY(-6px);
  }

  .amenities-header,
  .amenities-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-intro {
    margin-bottom: 34px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .price-card {
    min-height: 400px;
  }

  .amenities-header {
    margin-bottom: 34px;
  }

  .amenity-feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: 420px;
  }

  .amenity-side-panel,
  .amenity-card,
  .amenity-card-club {
    grid-column: span 1;
    grid-row: auto;
    min-height: 260px;
  }

  .about-floating-card {
    margin: -76px 24px 0;
  }

  .about-image-box {
    min-height: 520px;
    height: 520px;
    transform: none;
  }

  .signature-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 20px;
    margin-right: 20px;
  }

  .signature-strip div {
    min-height: 144px;
  }

  .signature-strip div:nth-child(2) {
    border-right: 0;
  }

  .signature-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .bento-grid {
    column-gap: 24px;
  }

  .bento-grid::before {
    grid-row: span 7;
    min-height: 430px;
  }

  .highlight-card:nth-child(n) {
    grid-column: auto;
    min-height: auto;
  }

  .hero-residence-card {
    max-width: 520px;
  }

  .hero-shell {
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 780px;
    text-align: center;
  }

  .sub-heading {
    justify-content: center;
    text-align: center;
  }

  .hero h1,
  .hero p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-residence-card {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding-left: 12px;
  }

  .logo img {
    width: 138px;
  }

  .hero {
    min-height: 760px;
    padding: 124px 20px 70px;
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(8, 18, 16, 0.78) 0%, rgba(8, 18, 16, 0.54) 44%, rgba(8, 18, 16, 0.82) 100%),
      linear-gradient(90deg, rgba(8, 18, 16, 0.36), rgba(8, 18, 16, 0.4));
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 14px;
    letter-spacing: 0;
  }

  .hero-residence-card {
    padding: 24px;
  }

  .hero-residence-card strong {
    font-size: 68px;
  }

  .signature-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .signature-strip div {
    min-height: auto;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signature-strip .fact-number {
    min-height: auto;
    font-size: 54px;
  }

  .signature-strip .fact-unit {
    margin-top: 12px;
  }

  .signature-strip div:last-child {
    border-bottom: 0;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .about-container,
  .highlights-section,
  .nj-amenities-wrapper,
  .price-section,
  .ep-main-wrapper {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .amenities-header,
  .amenities-showcase {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-intro .nj-main-heading {
    font-size: 36px;
  }

  .pricing-intro {
    margin-bottom: 28px;
  }

  .price-card {
    min-height: auto;
    padding: 28px;
  }

  .price-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-core {
    padding: 38px 0 28px;
  }

  .price-meta-grid {
    grid-template-columns: 1fr;
  }

  .btn-premium {
    width: 100%;
  }

  .amenities-header {
    gap: 16px;
    margin-bottom: 26px;
  }

  .amenities-header .nj-main-heading {
    font-size: 36px;
  }

  .amenity-feature {
    grid-column: span 1;
    grid-row: auto;
    min-height: 360px;
  }

  .amenity-side-panel,
  .nj-luxury-card,
  .amenity-card,
  .amenity-card-club {
    grid-column: span 1;
    grid-row: auto;
    min-height: 200px;
  }

  .section-kicker {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .section-kicker span {
    font-size: 54px;
  }

  .section-kicker p {
    font-size: 16px;
  }

  .about-image-box {
    min-height: 390px;
    height: 390px;
  }

  .about-media-caption {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .about-floating-card {
    margin: -42px 10px 0;
    padding: 28px;
  }

  .about-floating-card::before,
  .about-floating-card::after {
    display: none;
  }

  .about-signature {
    margin-right: 0;
  }

  .bento-grid,
  .ep-specs-layout,
  .ep-cta-grid,
  .editorial-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-grid::before {
    position: relative;
    top: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .ep-spec-item,
  .ep-spec-span-full {
    grid-column: span 1;
  }

  .c-medium,
  .c-wide,
  .ep-spec-span-full {
    grid-column: span 1;
  }

  .highlight-card:nth-child(n),
  .editorial-stat:first-child {
    grid-column: span 1;
    grid-row: span 1;
    min-height: auto;
  }

  .highlight-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 15px 0;
    min-height: auto;
  }

  .highlight-card h3 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .lifestyle-editorial {
    padding-top: 64px;
  }

  .editorial-copy,
  .editorial-stat {
    padding: 26px;
  }

  .editorial-copy {
    min-height: auto;
  }

  .editorial-stat {
    min-height: 160px;
  }

  .nj-card-overlay {
    padding: 24px;
  }

  .amenity-index {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .ep-payment-box {
    padding: 24px;
  }

  .top-location-image img {
    height: 260px;
  }

  .top-location-image {
    min-height: 260px;
  }

  .bg-blur {
    min-width: 0;
    padding: 22px !important;
  }

  .bg-blur h3 {
    font-size: 34px;
  }

  .location-advantages-section .row.g-4 {
    grid-template-columns: 1fr;
  }

  .location-advantages-section .row.g-4>[class*="col-"]:nth-child(n) {
    grid-column: span 1;
  }

  .location-list li {
    align-items: flex-start !important;
    /* flex-direction: column; */
    gap: 2px;
  }

  .builder-section {
    min-height: auto;
    padding: 70px 18px;
  }

  .border-gold h2 {
    font-size: 82px;
  }

  .builder-proof-grid {
    grid-template-columns: 1fr;
  }

  .split-contact-section {
    padding: 54px 18px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-image-col {
    min-height: 400px;
  }

  .contact-form-col {
    padding: 34px 24px !important;
  }

  .contact-form-heading {
    text-align: center !important;
    margin-inline: auto;
  }

  .contact-form-heading p {
    margin-inline: auto;
  }

  .contact-mini-list {
    max-width: 420px;
  }

  .nj-footer-top,
  .nj-footer-btm,
  .nj-f-links {
    justify-content: center;
    text-align: center;
  }

  .nj-contact-box {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 38px;
  }

  .nj-main-heading,
  .about-floating-card h2 {
    font-size: 32px;
  }

  .price-tag {
    font-size: 38px;
  }

  .split-contact-section {
    padding: 42px 12px;
  }

  .contact-image-col {
    min-height: 340px;
    padding: 20px;
  }

  .contact-visual-content h3 {
    font-size: 26px;
  }

  .contact-mini-list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .contact-form-col {
    padding: 28px 18px !important;
  }

  .contact-form-heading .nj-main-heading {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.luxury-item {
  transition: all 0.4s ease;
  cursor: pointer;
  padding: 12px 0 !important;
}

.luxury-item:hover {
  padding-left: 15px !important;
  background-color: rgba(197, 163, 107, 0.05);
}

.luxury-item:hover h3 {
  color: #c5a36b !important;
}

@media (max-width: 768px) {
  .luxury-container {
    flex-direction: column !important;
  }

  .image-wrapper {
    max-width: 100% !important;
    height: 350px !important;
  }
}

/* Subtle Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-image {
  animation: float 4s ease-in-out infinite;
}

.builder-badge-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 163, 107, 0.15);
}

.builder-badge-card:hover {
  border-color: #c5a36b;
  background: rgba(197, 163, 107, 0.08);
  transform: translateY(-3px);
}

/* Premium Design Tweaks */
.location-advantages-section {
  background-color: #fdfdfd;
  overflow: hidden;
}

/* Map Container & Overlay Animation */
.top-location-image {
  transition: all 0.5s ease;
  border: 1px solid rgba(197, 163, 107, 0.1);
}

.top-location-image img {
  transition: transform 1.2s cubic-bezier(0.1, 0.5, 0.2, 1);
}

.top-location-image:hover img {
  transform: scale(1.05);
}

.bg-blur {
  background: rgba(10, 29, 23, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 163, 107, 0.3);
  transition: all 0.4s ease;
}

.top-location-image:hover .bg-blur {
  background: rgba(197, 163, 107, 0.9);
  transform: translateY(-5px);
}

/* Location Cards Animation */
.location-card {
  border-radius: 15px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent !important;
}

.location-card:hover {
  background: #fff !important;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 29, 23, 0.08) !important;
  border-color: rgba(197, 163, 107, 0.2) !important;
}

/* Custom Bullet Points */
.location-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid #f3f3f3;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c5a36b;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.location-list li:hover {
  padding-left: 30px;
  background-color: rgba(197, 163, 107, 0.03);
}

.location-list li:hover::before {
  opacity: 1;
  width: 12px;
  border-radius: 2px;
}

.km-text {
  font-weight: 700;
  color: #c5a36b;
  font-size: 0.85rem;
  background: rgba(197, 163, 107, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  min-width: 65px;
  text-align: right;
}

/* Header Line Animation */
.location-card h5::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #c5a36b;
  margin-top: 8px;
  transition: width 0.4s ease;
}

.location-card:hover h5::after {
  width: 60px;
}