:root {
  --navy-deepest: #02080f;
  --navy-deep: #060e1c;
  --navy: #0a1628;
  --navy-mid: #0e2040;
  --navy-light: #172b52;
  --navy-border: rgba(201, 168, 76, 0.14);
  --gold: #c9a84c;
  --gold-bright: #e8c168;
  --gold-pale: #f5e8c0;
  --gold-dim: rgba(201, 168, 76, 0.38);
  --cream: #faf6ee;
  --white: #ffffff;
  --text-muted: rgba(250, 246, 238, 0.5);
  --text-mid: rgba(250, 246, 238, 0.75);
  --pad: 120px 0;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy-deep);
  color: var(--cream);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}
.gold {
  color: var(--gold);
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 52px;
}
.label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.rule.center {
  margin-left: auto;
  margin-right: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.22s;
}
.d3 {
  transition-delay: 0.34s;
}
.d4 {
  transition-delay: 0.46s;
}

/* NAVBAR */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 52px;
  transition: background 0.5s, padding 0.4s, box-shadow 0.5s;
}
#nav.scrolled {
  background: rgba(6, 14, 28, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 52px;
  box-shadow: 0 1px 0 var(--navy-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}
.nav-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-title span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background 0.22s, color 0.22s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  overflow: hidden;
}
.hero-left {
  width: 42%;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(
    90deg,
    var(--navy-deep) 0%,
    rgba(6, 14, 28, 0.85) 30%,
    rgba(6, 14, 28, 0.4) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-right {
  width: 58%;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(
    90deg,
    rgba(6, 14, 28, 0.75) 0%,
    rgba(6, 14, 28, 0.4) 40%,
    rgba(6, 14, 28, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.07);
  filter: brightness(0.82) saturate(0.9);
  transition: transform 8s ease-out;
}
.hero-bg.go {
  transform: scale(1);
}
.hero-gold-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent 100%
  );
  opacity: 0.65;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 38px 0;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 18px;
  opacity: 0;
  animation: up 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-badge::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
  opacity: 0;
  animation: up 0.9s 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 24px;
  opacity: 0;
  animation: up 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-market-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 10px 18px;
  margin-bottom: 44px;
  font-size: 16px;
  color: var(--gold-pale);
  opacity: 0;
  animation: up 0.9s 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-market-note::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.9s 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.btn-gold {
  padding: 15px 36px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}
.btn-ghost {
  padding: 14px 36px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 238, 0.3);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOOTER */
footer {
  background: var(--navy-deep);
  padding: 60px 0;
  border-top: 1px solid var(--navy-border);
}
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* LOCATION SECTION */
.location-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 0;
}
.location-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
}
.location-map iframe {
  display: block;
  width: 100%;
}
.map-link-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 32px;
}
.map-link-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .location-section {
    gap: 30px;
    padding: 60px 0;
  }
  .location-map iframe {
    height: 300px;
  }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 84px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1.2s 1.5s forwards;
}
.hero-scroll span {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-tick {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: tick 2s 2s infinite;
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.65;
  }
}
@keyframes tick {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.45);
    opacity: 0.35;
  }
}

/* MARKET BAND */
#market {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 58px 0;
}
.market-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  justify-content: center;
}
.market-divider {
  height: 52px;
  background: var(--navy-border);
}
.market-stat {
  text-align: center;
  padding: 0 28px;
}
.market-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.market-num sup {
  font-size: 22px;
  font-weight: 300;
}
.market-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SCARCITY */
#scarcity {
  padding: var(--pad);
}
.scarcity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.scarcity-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.scarcity-headline em {
  font-style: italic;
  color: var(--gold);
}
.body {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.insight-cards {
  margin-top: 44px;
}
.insight-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--navy-border);
}
.insight-card:first-child {
  border-top: 1px solid var(--navy-border);
}
.insight-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.insight-text strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.insight-text span {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}
.scarcity-right {
  padding-top: 12px;
}
.demand-block {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-left: 3px solid var(--gold);
  padding: 40px 36px;
}
.demand-block h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.demand-block p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.85;
}
.demand-list {
  list-style: none;
  margin-top: 28px;
}
.demand-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--navy-border);
  font-size: 17px;
  color: var(--text-mid);
}
.demand-list li:last-child {
  border-bottom: none;
}
.demand-list li::before {
  content: "—";
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 2px;
}
.demand-list li strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* OVERVIEW */
#overview {
  padding: var(--pad);
  background: var(--navy-deepest);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.section-h2 em {
  font-style: italic;
  color: var(--gold);
}
.feat-list {
  list-style: none;
  margin-top: 40px;
}
.feat-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--navy-border);
  align-items: flex-start;
}
.feat-item:first-child {
  border-top: 1px solid var(--navy-border);
}
.feat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  min-width: 52px;
}
.feat-t strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3px;
}
.feat-t span {
  font-size: 17px;
  color: var(--text-muted);
}
.overview-visual {
  position: relative;
}
.ov-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.7);
}
.ov-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 14, 28, 0.65) 0%,
    transparent 45%
  );
}
.ov-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(6, 14, 28, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--navy-border);
  padding: 18px 24px;
}
.ov-badge-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.ov-badge-l {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* WORKSPACES */
#workspaces {
  padding: var(--pad);
}
.sec-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 72px;
}
.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
}
.ws-card {
  background: var(--navy-deep);
  padding: 46px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.ws-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ws-card:hover::before {
  transform: scaleX(1);
}
.ws-card:hover {
  background: var(--navy-mid);
}
.ws-card.ft {
  background: var(--navy-mid);
}
.ws-card.ft::before {
  transform: scaleX(1);
}
.ws-ghost-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: -0.04em;
}
.ws-tag {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.ws-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}
.ws-area {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--navy-border);
}
.ws-area strong {
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 18px;
}
.ws-feats {
  list-style: none;
}
.ws-feats li {
  font-size: 16px;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 10px;
}
.ws-feats li::before {
  content: "—";
  color: var(--gold-dim);
  flex-shrink: 0;
}
.ws-enq {
  display: inline-block;
  margin-top: 32px;
  padding: 11px 26px;
  border: 1px solid var(--gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.ws-enq:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* CONNECTIVITY */
#connect {
  padding: var(--pad);
  background: var(--navy-deepest);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 100px;
  align-items: start;
}
.coastal-box {
  border-left: 2px solid var(--gold);
  padding: 28px 32px;
  background: rgba(201, 168, 76, 0.04);
  margin: 44px 0;
}
.coastal-box h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.coastal-box p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.85;
}
.transit-list {
  list-style: none;
  margin-top: 36px;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--navy-border);
}
.t-item:first-child {
  border-top: 1px solid var(--navy-border);
}
.t-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}
.t-text strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.t-text span {
  font-size: 16px;
  color: var(--text-muted);
}
.connect-right {
  position: sticky;
  top: 120px;
}
.conn-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.65);
}
.odc-box {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-top: 2px solid var(--gold);
  padding: 28px 30px;
  margin-top: -1px;
}
.odc-box h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.odc-box p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ARCHITECTURE */
#arch {
  padding: var(--pad);
}
.arch-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 84px;
  align-items: center;
}
.arch-img-wrap {
  position: relative;
}
.arch-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.65);
}
.arch-quote {
  position: absolute;
  bottom: -28px;
  right: -36px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-left: 3px solid var(--gold);
  padding: 26px 28px;
  max-width: 290px;
}
.arch-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.55;
}
.arch-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}
.arch-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
  margin-top: 44px;
}
.arch-spec {
  background: var(--navy-deep);
  padding: 24px 22px;
}
.arch-spec-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.arch-spec-l {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* LEGACY */
#legacy {
  padding: var(--pad);
  background: var(--navy-deepest);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  text-align: center;
}
.legacy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legacy-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.legacy-h2 em {
  font-style: italic;
  color: var(--gold);
}
.proj-row {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.proj-pill {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--navy-border);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.proj-pill:last-child {
  border-right: none;
}
.proj-pill:hover {
  color: var(--gold);
}

/* TESTIMONIALS */
#testimonials {
  padding: 96px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testi-card {
  background: var(--navy-deep);
  border: 1px solid var(--navy-border);
  border-top: 2px solid var(--gold);
  padding: 44px 36px;
}
.testi-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gold-pale);
  margin-bottom: 28px;
}
.testi-q::before {
  content: "\201C";
  font-size: 68px;
  line-height: 0.5;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 18px;
}
.testi-a {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testi-a strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 3px;
}

/* GALLERY */
#gallery {
  padding: var(--pad);
  background: var(--navy-deepest);
}
.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  margin-top: 52px;
}
.gal-item {
  overflow: hidden;
  position: relative;
}
.gal-item:first-child {
  grid-row: 1/3;
}
.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.65);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}
.gal-item:hover .gal-img {
  transform: scale(1.07);
  filter: brightness(0.8) saturate(0.78);
}
.gal-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(6, 14, 28, 0.85) 0%,
    transparent 100%
  );
  padding: 40px 20px 18px;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* FAQ */
#faq {
  padding: var(--pad);
}
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 84px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 120px;
}
.faq-item {
  border-bottom: 1px solid var(--navy-border);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.2s;
  user-select: none;
  gap: 20px;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-icon {
  width: 26px;
  height: 26px;
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-a {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 0.3s;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 22px;
}

/* DOWNLOADS */
#downloads {
  padding: 84px 0;
  background: var(--navy-deepest);
  border-top: 1px solid var(--navy-border);
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
  margin-top: 52px;
}
.dl-card {
  background: var(--navy-deep);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}
.dl-card:hover {
  background: var(--navy-mid);
}
.dl-icon {
  font-size: 30px;
  color: var(--gold-dim);
}
.dl-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
}
.dl-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.dl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: gap 0.2s;
}
.dl-link:hover {
  gap: 14px;
}

/* CONTACT */
#contact {
  padding: var(--pad);
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
}
.contact-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-h2 em {
  font-style: italic;
  color: var(--gold);
}
.c-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--navy-border);
  align-items: flex-start;
}
.c-icon {
  font-size: 18px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.c-detail strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.c-detail span {
  font-size: 18px;
  color: var(--cream);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-group label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.f-group input,
.f-group select,
.f-group textarea {
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  padding: 14px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.f-group input::placeholder,
.f-group textarea::placeholder {
  color: var(--text-muted);
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--gold);
}
.f-group select {
  cursor: pointer;
}
.f-group select option {
  background: var(--navy);
}
.f-group textarea {
  resize: vertical;
  min-height: 96px;
}
.form-submit {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy-deepest);
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}
.form-note {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: var(--navy-deepest);
  border-top: 1px solid var(--navy-border);
  padding: 54px 0 36px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-border);
  margin-bottom: 36px;
}
.foot-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.foot-logo span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.foot-links {
  display: flex;
  gap: 36px;
}
.foot-links a {
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.foot-links a:hover {
  color: var(--gold);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-copy {
  font-size: 17px;
  color: var(--text-muted);
}
.foot-rera {
  font-size: 16px;
  color: var(--text-muted);
}
.foot-rera strong {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .container {
    padding: 0 36px;
  }
  .scarcity-grid,
  .overview-grid,
  .connect-grid,
  .arch-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .market-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-divider {
    display: none;
  }
  .market-stat {
    border-bottom: 1px solid var(--navy-border);
    padding: 24px 0;
  }
  .ws-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item:first-child {
    grid-row: auto;
  }
  .connect-right,
  .faq-side {
    position: relative;
    top: auto;
  }
  .arch-img-wrap {
    order: -1;
  }
  .arch-quote {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 24px;
  }
  #hero {
    flex-direction: column;
  }
  .hero-left {
    width: 100%;
    min-height: 50vh;
  }
  .hero-right {
    width: 100%;
    min-height: 50vh;
  }
  .hero-content {
    padding: 0 40px;
  }
  #nav,
  #nav.scrolled {
    padding: 16px 36px;
  }
  .dl-grid {
    grid-template-columns: 1fr;
  }
  .foot-top {
    flex-direction: column;
    gap: 28px;
  }
  .foot-links {
    flex-wrap: wrap;
    gap: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-content {
    padding: 0 24px;
  }
  .container {
    padding: 0 24px;
  }
  .proj-row {
    flex-direction: column;
  }
  .proj-pill {
    border-right: none;
    border-bottom: 1px solid var(--navy-border);
  }
  .hero-scroll {
    display: none;
  }
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-overlay.active {
  display: flex;
}
.popup-form {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-top: 3px solid var(--gold);
  padding: 44px 40px;
  border-radius: 2px;
  max-width: 420px;
  width: 90%;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.2s;
}
.popup-close:hover {
  color: var(--gold);
}
.popup-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.popup-form p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.popup-form input {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 14px;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
.popup-form input::placeholder {
  color: var(--text-muted);
}
.popup-form input:focus {
  border-color: var(--gold);
}
.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-deepest);
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-submit:hover {
  background: var(--gold-bright);
}

/* SUCCESS TOAST */
.success-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--navy-mid);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  color: var(--cream);
  padding: 18px 28px;
  font-size: 18px;
  z-index: 10000;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 340px;
}
.success-toast.show {
  display: block;
  animation: toastSlide 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes toastSlide {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
