:root {
  --navy: #17325a;
  --navy-deep: #0e2242;
  --gold: #b58a41;
  --gold-soft: #d4b378;
  --cream: #f6efe4;
  --cream-2: #ece2ce;
  --sand: #e8d9bd;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --line: #e5dcc9;
  --shadow-lg: 0 30px 80px -30px rgba(23, 50, 90, 0.35);
  --shadow-md: 0 10px 30px -12px rgba(23, 50, 90, 0.25);
  --radius: 14px;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- TYPOGRAPHY ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--navy-deep);
  letter-spacing: 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--wide { width: 100%; padding: 16px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  padding: 14px 0;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brandbar { display: flex; align-items: center; gap: 16px; color: #fff; }
.nav.scrolled .nav__brandbar { color: var(--navy-deep); }

.nav__parent { display: flex; align-items: center; gap: 10px; color: inherit; }
.nav__logo { width: 34px; height: 26px; color: var(--gold); flex: none; }
.nav.scrolled .nav__logo { color: var(--navy); }
.nav__parent-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
}

.nav__divider {
  width: 1px; height: 26px;
  background: currentColor;
  opacity: 0.25;
}

.nav__project { position: relative; }
.nav__project-btn {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  background: transparent; border: 0;
  color: inherit; padding: 6px 12px;
  border-radius: 8px;
  transition: background .2s ease;
  text-align: left;
}
.nav__project-btn:hover { background: rgba(255,255,255,0.08); }
.nav.scrolled .nav__project-btn:hover { background: rgba(23,50,90,0.06); }

.nav__project-label {
  grid-column: 1; grid-row: 1;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
}
.nav__project-name {
  grid-column: 1; grid-row: 2;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}
.nav__project-caret {
  grid-column: 2; grid-row: 1 / span 2;
  width: 10px; height: 7px;
  transition: transform .2s ease;
  opacity: 0.7;
  align-self: center;
}
.nav__project[data-open="true"] .nav__project-caret { transform: rotate(180deg); }

.nav__project-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav__project[data-open="true"] .nav__project-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__project-menu-title {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.nav__project-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  padding: 12px 12px;
  border-radius: 8px;
  color: var(--navy-deep);
  transition: background .18s ease;
  cursor: pointer;
}
.nav__project-item:hover:not(.is-placeholder) { background: var(--cream); }
.nav__project-item-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
}
.nav__project-item-meta {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav__project-item-badge {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(181, 138, 65, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: start;
}
.nav__project-item.is-active { background: var(--cream); }
.nav__project-item.is-placeholder { cursor: not-allowed; opacity: 0.55; }
.nav__project-item.is-placeholder .nav__project-item-name { color: var(--muted); font-style: italic; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--gold); transition: right .25s ease;
}
.nav__links a:hover::after { right: 0; }
.nav.scrolled .nav__links a { color: var(--ink); }

.nav__cta { color: #fff !important; border-color: transparent; }
.nav.scrolled .nav__cta { background: var(--navy); }

@media (max-width: 1024px) {
  .nav__links { gap: 22px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__project-menu { left: auto; right: 0; }
}
@media (max-width: 520px) {
  .nav__parent-title { font-size: 1.05rem; letter-spacing: 0.12em; }
  .nav__project-btn { padding: 4px 6px; }
  .nav__project-name { font-size: 0.95rem; }
  .nav__divider { height: 22px; }
}
@media (max-width: 560px) {
  .nav { padding: 10px 0; }
  .nav__inner {
    padding: 0 16px;
    gap: 12px;
  }
  .nav__brandbar {
    min-width: 0;
    gap: 10px;
  }
  .nav__parent { gap: 8px; }
  .nav__logo { width: 30px; height: 23px; }
  .nav__project-menu {
    min-width: min(300px, calc(100vw - 32px));
    right: 0;
  }
}
@media (max-width: 430px) {
  .nav__cta { display: none; }
  .nav__project-btn {
    grid-template-rows: auto;
    grid-template-columns: auto auto;
  }
  .nav__project-label { display: none; }
  .nav__project-name {
    grid-row: 1;
    font-size: 0.9rem;
  }
  .nav__project-caret { grid-row: 1; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/sunset.png');
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 20s ease-out forwards;
  z-index: -2;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%),
    linear-gradient(90deg, rgba(14,34,66,0.55) 0%, rgba(14,34,66,0) 60%);
  z-index: -1;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 90px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  gap: 54px;
  align-items: center;
}
.hero__copy {
  min-width: 0;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.hero__title span { font-style: italic; color: var(--gold-soft); }
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__personal-card {
  width: 100%;
  aspect-ratio: 1;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(14, 34, 66, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px -34px rgba(0,0,0,0.75);
}
.hero__personal-card span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero__personal-card strong {
  display: block;
  max-width: 280px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.45vw, 2.25rem);
  font-weight: 500;
  line-height: 1.04;
}
.hero__personal-card p {
  color: rgba(255,255,255,0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}
.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(14, 34, 66, 0.35);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
}
.hero__price-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.hero__price-value {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.hero__price-value em {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--gold-soft);
  font-weight: 500;
}
.hero__price-value small {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero__price-value sup {
  font-size: 0.7rem;
  color: var(--gold-soft);
  margin-left: 2px;
  vertical-align: super;
}
@media (max-width: 520px) {
  .hero__price { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 18px; }
  .hero__price-value { font-size: 1.6rem; }
}

@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero__personal-card {
    justify-self: start;
    max-width: 420px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero__content {
    padding: 118px 18px 78px;
    gap: 28px;
  }
  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }
  .hero__title {
    font-size: 3.35rem;
    margin-bottom: 18px;
  }
  .hero__lede {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero__personal-card {
    aspect-ratio: auto;
    padding: 26px 22px;
    gap: 26px;
  }
  .hero__personal-card strong { font-size: 1.85rem; }
  .hero__ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
    max-width: 320px;
  }
  .hero__meta {
    gap: 1px;
    padding: 0;
    overflow: hidden;
  }
  .hero__meta > div {
    padding: 16px 14px;
    background: rgba(0,0,0,0.18);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .hero__meta > div span { font-size: 1.75rem; }
  .hero__scroll { display: none; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 3rem; }
  .hero__meta > div { padding: 14px 12px; }
}

.overview__stats strong sup {
  font-size: 0.55em;
  color: var(--gold);
  margin-left: 1px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }
.hero__ctas .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero__ctas .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  max-width: 720px;
}
.hero__meta > div {
  display: flex; flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.hero__meta > div span {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 4px;
  line-height: 1;
}
@media (max-width: 620px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
}

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex; justify-content: center;
}
.hero__scroll span {
  width: 3px; height: 8px; margin-top: 8px;
  background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lede { color: var(--muted); font-size: 1.05rem; margin-top: 18px; }

/* ---------- OVERVIEW ---------- */
.overview { background: var(--cream); }
.overview__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.overview__intro p { color: var(--muted); margin-top: 18px; }
.overview__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.overview__stats > div { display: flex; flex-direction: column; }
.overview__stats strong {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  color: var(--navy-deep); line-height: 1;
}
.overview__stats span {
  font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 8px;
}
.overview__media {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: rotate(-1deg);
  background: #fff;
}
.overview__media img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
@media (max-width: 900px) {
  .overview__grid { grid-template-columns: 1fr; gap: 50px; }
  .overview__media { transform: none; }
  .overview__media img { height: 380px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 76px 0; }
  .section__head { margin-bottom: 38px; }
  .overview__stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .overview__media img { height: 300px; }
}

/* ---------- FEATURES ---------- */
.features { background: #fff; }
.signature-feature {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0%, #fbf7ef 100%);
  box-shadow: var(--shadow-md);
}
.signature-feature__icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(181, 138, 65, 0.1);
  border-radius: 8px;
}
.signature-feature__icon svg { width: 46px; height: 46px; }
.signature-feature .eyebrow { margin-bottom: 8px; }
.signature-feature h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.signature-feature p:last-child {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature {
  background: #fff;
  padding: 34px 24px;
  transition: background .25s ease;
  display: flex;
  flex-direction: column;
}
.feature:hover { background: var(--cream); }
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features__grid { grid-template-columns: 1fr; }
  .signature-feature {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}
.feature__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.35rem; color: var(--navy-deep);
  margin-bottom: 10px;
}
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ---------- FLOOR PLAN ---------- */
.floorplan { background: var(--cream); }
.floorplan__frame {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}
.floorplan__frame img { border-radius: 8px; margin: 0 auto; }
.floorplan__legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .floorplan__legend { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .floorplan__legend { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .floorplan__frame {
    padding: 12px;
    margin-left: -6px;
    margin-right: -6px;
  }
  .floorplan__frame img {
    border-radius: 6px;
  }
}
.floorplan__legend > div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px 20px;
  border-radius: 10px;
  display: flex; flex-direction: column;
}
.floorplan__legend strong {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--navy-deep); font-weight: 600;
}
.floorplan__legend span {
  font-size: 0.85rem; color: var(--muted);
  margin-top: 4px; letter-spacing: 0.02em;
}
.floorplan__planning {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: start;
  margin-top: 42px;
  padding: 38px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.floorplan__planning .eyebrow { color: var(--gold-soft); }
.floorplan__planning h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 16px;
}
.floorplan__planning-copy p:last-child {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
}
.planning__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.planning__list li {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
}
.planning__list strong {
  display: block;
  font-family: var(--serif);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.planning__list span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}
@media (max-width: 860px) {
  .floorplan__planning {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}
@media (max-width: 560px) {
  .planning__list { grid-template-columns: 1fr; }
  .floorplan__planning { margin-left: -6px; margin-right: -6px; }
}

/* ---------- SPECS ---------- */
.specs { background: var(--navy-deep); color: #fff; }
.specs .h2 { color: #fff; }
.specs .eyebrow { color: var(--gold-soft); }
.specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.spec {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 22px;
}
.spec h4 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 600; color: #fff;
  margin-bottom: 8px;
}
.spec p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ---------- GALLERY ---------- */
.gallery { background: #fff; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 5;
  transition: transform .3s ease;
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(23,50,90,0.85);
  color: #fff; padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.08em;
}
@media (max-width: 820px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { aspect-ratio: 3 / 2; }
}

/* ---------- CONNECTIVITY ---------- */
.connectivity {
  background: #f8f2e6;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(181, 138, 65, 0.08), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(23, 50, 90, 0.05), transparent 40%);
}

/* Category color tokens matching the map legend */
.connectivity {
  --cat-health: #2f8f7a;
  --cat-edu: #2d63a8;
  --cat-shop: #c94a4a;
  --cat-transit: #d6923a;
  --cat-landmark: #7a4aa1;
}

/* Headline stat strip */
.conn__wow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.conn__stat {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.conn__stat:last-child { border-right: 0; }
.conn__stat:hover { background: var(--cream); }
.conn__stat strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.conn__stat strong span {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.conn__stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.02em;
  max-width: 200px;
}

/* Full-width centered map */
.conn__map {
  max-width: 1000px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.conn__map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Horizontal category legend */
.conn__legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  margin: 0 auto 44px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
}
.conn__legend li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.conn__rings-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}
.conn__dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.conn__dot[data-cat="health"]   { background: var(--cat-health); }
.conn__dot[data-cat="edu"]      { background: var(--cat-edu); }
.conn__dot[data-cat="shop"]     { background: var(--cat-shop); }
.conn__dot[data-cat="transit"]  { background: var(--cat-transit); }
.conn__dot[data-cat="landmark"] { background: var(--cat-landmark); }

.conn__rings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .conn__rings { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .conn__rings { grid-template-columns: 1fr; }
}
.conn__ring {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.conn__ring:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.conn__ring > header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.conn__ring h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy-deep);
  font-weight: 600;
}
.conn__ring-count {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.conn__ring ul { list-style: none; display: grid; gap: 12px; }
.conn__ring li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.conn__pin {
  width: 24px; height: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.conn__pin[data-cat="health"]   { background: var(--cat-health); }
.conn__pin[data-cat="edu"]      { background: var(--cat-edu); }
.conn__pin[data-cat="shop"]     { background: var(--cat-shop); }
.conn__pin[data-cat="transit"]  { background: var(--cat-transit); }
.conn__pin[data-cat="landmark"] { background: var(--cat-landmark); }
.conn__name { color: var(--ink); line-height: 1.35; }
.conn__ring li em {
  font-style: normal;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-deep);
  white-space: nowrap;
}
.conn__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .conn__wow { grid-template-columns: repeat(2, 1fr); }
  .conn__stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .conn__stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .conn__stat:nth-last-child(-n+2) { border-bottom: 0; }
  .conn__stat strong { font-size: 2.1rem; }
  .conn__map { padding: 14px; }
}
@media (max-width: 480px) {
  .conn__wow { grid-template-columns: 1fr; }
  .conn__stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .conn__stat:last-child { border-bottom: 0; }
  .conn__legend {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    width: 100%;
  }
  .conn__ring {
    padding: 22px 18px;
  }
  .conn__ring li {
    grid-template-columns: 26px 1fr;
  }
  .conn__ring li em {
    grid-column: 2;
    font-size: 0.9rem;
  }
}

/* ---------- LOCATION ---------- */
.location { background: var(--cream); }
.location__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: stretch;
}
.location__block {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.6);
}
.location__block h4 {
  font-family: var(--serif); color: var(--navy-deep);
  font-size: 1.15rem; margin-bottom: 6px; font-weight: 600;
}
.location__block p { color: var(--muted); font-size: 0.98rem; }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 460px;
}
.location__map iframe { width: 100%; height: 100%; border: 0; min-height: 460px; }
@media (max-width: 900px) {
  .location__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .location__map,
  .location__map iframe {
    min-height: 320px;
  }
}

/* ---------- CONTACT ---------- */
.contact { background: var(--navy-deep); color: #fff; }
.contact .h2 { color: #fff; }
.contact .eyebrow { color: var(--gold-soft); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact__intro p { color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 1.05rem; }
.contact__list { list-style: none; margin-top: 30px; }
.contact__list li {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 6px;
}
.contact__label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--gold-soft);
}
.contact__list a {
  font-family: var(--serif); font-size: 1.5rem;
  color: #fff; font-weight: 500;
}
.contact__list a:hover { color: var(--gold-soft); }

.contact__form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
  display: grid; gap: 16px;
}
.contact__form label {
  display: flex; flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  gap: 8px;
}
.contact__form input:not([type="checkbox"]),
.contact__form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition: border-color .2s, background .2s;
}
.contact__form input:not([type="checkbox"])::placeholder,
.contact__form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact__form input:not([type="checkbox"]):focus,
.contact__form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.contact__choice {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
  padding: 4px 0 2px;
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.92rem !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.contact__choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--gold);
}
.contact__form .btn--primary { background: var(--gold); color: var(--navy-deep); border: 0; }
.contact__form .btn--primary:hover { background: var(--gold-soft); }
.contact__note { color: var(--gold-soft); font-size: 0.9rem; min-height: 20px; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .contact {
    padding-bottom: 96px;
  }
  .contact__form {
    padding: 26px 20px;
  }
  .contact__list a {
    font-size: 1.28rem;
  }
}

/* ---------- FOOTER ---------- */
.footer { background: #0a1a33; color: rgba(255,255,255,0.7); padding: 60px 0 30px; font-size: 0.9rem; }
.footer__inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { display: flex; gap: 14px; align-items: center; color: #fff; }
.footer__brand .nav__logo { color: var(--gold); width: 44px; height: 34px; }
.footer__brand div { display: flex; flex-direction: column; }
.footer__brand strong { font-family: var(--serif); font-size: 1.35rem; color: #fff; line-height: 1.1; }
.footer__brand span { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.footer__brand .footer__parent { color: var(--gold-soft); margin-top: 0; margin-bottom: 6px; letter-spacing: 0.28em; font-size: 0.68rem; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h5 {
  color: #fff; font-size: 0.78rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__cols a, .footer__cols p { display: block; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.footer__cols a:hover { color: var(--gold-soft); }
.footer__base {
  display: flex; justify-content: space-between;
  padding-top: 24px; font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; gap: 8px; }
}
@media (max-width: 560px) {
  .footer {
    padding: 48px 0 86px;
  }
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------- FLOATING CTA ---------- */
.float-cta {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-cta:hover { transform: scale(1.08); box-shadow: 0 12px 34px rgba(37, 211, 102, 0.5); }
.float-cta svg { width: 28px; height: 28px; }
@media (max-width: 560px) {
  .float-cta {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  .float-cta svg { width: 26px; height: 26px; }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
