/* ============ HOME HERO ============ */
.home-hero {
  position: relative;
  min-height: 100vh;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}
.home-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.home-hero__img {
  position: absolute; inset: -8%;
  background-image: url('../assets/hero.webp');
  background-size: cover;
  background-position: center center;
  animation: kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}
.home-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 42, 53, 0.55) 0%, rgba(28, 42, 53, 0.15) 35%, rgba(28, 42, 53, 0.75) 100%),
    radial-gradient(70% 40% at 50% 30%, rgba(28, 42, 53, 0.35) 0%, transparent 70%);
}
.home-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.home-hero__inner {
  position: relative;
  max-width: 720px;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.home-hero__rule {
  width: 64px; height: 1px;
  background: rgba(243, 237, 228, 0.4);
  margin: 0 auto 1.5rem;
  overflow: hidden; position: relative;
}
.home-hero__rule span {
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: ruleIn 1400ms var(--ease) 200ms forwards;
}
.home-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(243, 237, 228, 0.85);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
}
.home-hero__title {
  font-family: var(--geo);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 2rem;
}
.home-hero__title .line { display: block; overflow: hidden; }
.home-hero__title .line > span {
  display: inline-block;
  transform: translateY(105%);
  animation: lineIn 1100ms var(--ease) forwards;
}
.home-hero__title .line:nth-child(1) > span { animation-delay: 350ms; }
.home-hero__title .line:nth-child(2) > span { animation-delay: 480ms; }
.home-hero__title .line:nth-child(3) > span { animation-delay: 610ms; }
.home-hero__title .italic > span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}
.home-hero__sub {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: rgba(243, 237, 228, 0.85);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.home-hero__actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.home-hero__meta {
  position: absolute;
  bottom: 1.75rem; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 237, 228, 0.6);
  font-family: var(--sans);
}
.home-hero__meta-item em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  margin-right: 0.5rem;
}
.home-hero__meta-item--center { display: none; }
@media (min-width: 1100px) { .home-hero__meta-item--center { display: inline; } }
.home-hero__scroll {
  display: inline-flex; align-items: center;
  position: relative;
}
.home-hero__scroll::before {
  content: '';
  width: 30px; height: 1px;
  background: currentColor;
  margin-right: 0.75rem;
  animation: scrollLine 2.4s var(--ease) infinite;
}

/* ============ HOME ABOUT ============ */
.home-about {
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
  background: var(--bg-deep);
  color: var(--accent-soft);
}
.home-about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.home-about__head { position: sticky; top: 120px; }
.home-about__body > p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: rgba(232, 211, 154, 0.78);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.home-about__pillars {
  border-top: 1px solid rgba(232, 211, 154, 0.18);
}

/* Light-yellow palette inside the brand-blue section */
.home-about .eyebrow { color: var(--accent-soft); }
.home-about .eyebrow .dot { background: var(--accent); }
.home-about .display { color: var(--accent-soft); }
.home-about .display em { color: var(--accent); }
.home-about .pillar-r { border-bottom-color: rgba(232, 211, 154, 0.18); }
.home-about .pillar-r__num { color: var(--accent); }
.home-about .pillar-r__body h3 { color: var(--accent-soft); }
.home-about .pillar-r__body p { color: rgba(232, 211, 154, 0.62); }

@media (max-width: 800px) {
  .home-about__inner { grid-template-columns: 1fr; }
  .home-about__head { position: static; }
}

/* ============ HOME PARTNERS ============ */
.home-partners {
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  background: var(--bg-soft);
}
.home-partners__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.home-partners__inner > .eyebrow { margin-bottom: 1.25rem; }
.home-partners__inner > .display { margin-bottom: 3.5rem; }
.home-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.plogo {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  transition: background var(--t-med) var(--ease);
}
.plogo:hover { background: var(--bg); }
.plogo span {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--bg-deep);
  opacity: 0.55;
  transition: opacity var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.plogo:hover span {
  opacity: 1;
  color: var(--accent-deep);
}
@media (max-width: 800px) {
  .home-partners__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ HOME PROJECTS ============ */
.home-projects {
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
  background: var(--bg);
}
.home-projects__head {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
}
.home-projects__head .eyebrow { margin-bottom: 1.25rem; }
.home-projects__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* Project card — editorial, image-led */
.pcard {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}
.pcard__media {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-deep);
}
.pcard__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1400ms var(--ease), filter 800ms var(--ease);
  filter: saturate(0.95);
}
.pcard:hover .pcard__img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.pcard__status {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 2;
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pcard__status--done { background: rgba(201, 162, 91, 0.92); color: var(--bg-deep); }
.pcard__status--live { background: rgba(28, 42, 53, 0.78); color: var(--bg); }
.pcard__status--soon { background: rgba(243, 237, 228, 0.88); color: var(--bg-deep); }

.pcard__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--bg);
  background: linear-gradient(
    to top,
    rgba(18, 28, 36, 0.78) 0%,
    rgba(18, 28, 36, 0.45) 45%,
    rgba(18, 28, 36, 0) 100%
  );
}
.pcard__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.pcard__location {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 237, 228, 0.78);
}
.pcard__name {
  margin: 0;
  font-family: var(--geo);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bg);
}
.pcard__arrow {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 237, 228, 0.55);
  border-radius: 999px;
  color: var(--bg);
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}
.pcard:hover .pcard__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
  transform: translate(4px, -2px);
}

@media (max-width: 900px) {
  .home-projects__grid { grid-template-columns: 1fr; }
}

/* ============ RENT NOW · NAVI TERRACE ============ */
.rent-now {
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.rent-now::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line-soft);
}
.rent-now__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.rent-now__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 40px 80px -40px rgba(19, 28, 37, 0.5);
}
.rent-now__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1600ms var(--ease);
  will-change: transform;
}
.rent-now__media:hover .rent-now__img { transform: scale(1.04); }
.rent-now__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19, 28, 37, 0.45) 100%);
  pointer-events: none;
}
.rent-now__badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg-deep);
  background: rgba(243, 237, 228, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.rent-now__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  display: inline-block;
}
.rent-now__pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: rentPulse 1.8s var(--ease) infinite;
}
@keyframes rentPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.rent-now__body { padding: clamp(0.5rem, 1vw, 1rem) 0; }
.rent-now__body .eyebrow { margin-bottom: 1.1rem; }
.rent-now__body .display { margin-bottom: 1.5rem; }
.rent-now__lead {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.rent-now__facts {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
.rent-now__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.rent-now__facts li span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.rent-now__facts li strong {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--bg-deep);
  letter-spacing: 0;
}
.rent-now__facts li strong em {
  font-family: var(--serif);
  color: var(--accent-deep);
  font-size: 0.85em;
  margin-left: 0.15em;
}

.rent-now__actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .rent-now__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rent-now__media { aspect-ratio: 4/3; }
  .rent-now__facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .rent-now__facts { grid-template-columns: 1fr; }
}
