:root {
  --navy: #0b2545;
  --navy-deep: #071a33;
  --navy-soft: #13315c;
  --gold: #c89b3c;
  --gold-light: #e6c874;
  --cream: #f7f5f0;
  --ink: #1c1f26;
  --ink-soft: #4a5164;
  --line: #e6e2d8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4, .brand-text {
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0 0 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top alert */
.top-alert {
  background: var(--navy-deep);
  color: var(--gold-light);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  background: var(--navy);
  color: var(--gold-light);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.brand-text em { color: var(--gold); font-style: normal; }

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a.nav-active { color: var(--navy); font-weight: 700; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  transition: color 0.2s ease;
}
.nav-dropdown-toggle:hover { color: var(--navy); }
.nav-dropdown-toggle.nav-active { color: var(--navy); font-weight: 700; }
.nav-dropdown-toggle .chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-toggle .chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 110;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--navy); }
.nav-dropdown-menu a.nav-active { color: var(--navy); font-weight: 700; background: rgba(200, 155, 60, 0.1); }


.header-actions { display: flex; align-items: center; gap: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-lg { padding: 0.85rem 1.8rem; font-size: 0.98rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 155, 60, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(200, 155, 60, 0.25), transparent 50%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
  z-index: -1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner { position: relative; max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.2rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 640px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: "Poppins", sans-serif; font-size: 1.6rem; color: var(--gold-light); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.section-sub { margin-top: 0.75rem; color: var(--ink-soft); font-size: 1.02rem; }

.overview-grid { display: grid; gap: 1.2rem; max-width: 900px; }
.lead-text { font-size: 1.15rem; color: var(--navy-soft); font-weight: 500; }

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.section-alt .card { background: var(--cream); }
.card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.card h4 { font-size: 1rem; margin-bottom: 0.9rem; color: var(--navy); }

.table-wrap { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
thead th {
  text-align: left;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.6rem 0.8rem;
  border-bottom: 2px solid var(--navy);
}
tbody td {
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
tbody tr:hover td { background: rgba(200, 155, 60, 0.06); }
tbody tr:last-child td { border-bottom: none; }
tbody td:first-child { font-weight: 600; color: var(--navy); }

.table-note { margin-top: 1rem; font-size: 0.88rem; color: var(--ink-soft); }

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.two-col-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.2rem 2rem; }

.route-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.route-list li:last-child { border-bottom: none; padding-bottom: 0; }
.route-list li strong { color: var(--navy); font-size: 0.96rem; }
.route-list li span { color: var(--ink-soft); font-size: 0.88rem; }

/* Landmarks */
.landmark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.landmark-grid.landmark-grid--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.landmark-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
}
.landmark-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.landmark-card p { font-size: 0.92rem; margin: 0; }

/* Sectors */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.sector-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.sector-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.sector-card p { font-size: 0.9rem; margin: 0; }

/* Price tabs / cards */
.price-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.yield-highlight {
  margin-top: 1.3rem;
  background: var(--navy);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.yield-highlight strong { color: var(--gold-light); font-family: "Poppins", sans-serif; font-size: 1.4rem; white-space: nowrap; }
.yield-highlight span { color: rgba(255,255,255,0.75); font-size: 0.82rem; }

/* Apartments */
.apartment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.apartment-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.apartment-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }

/* Facility tabs */
.facility-tabsbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.tab-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn:hover { border-color: var(--gold); color: var(--navy); }
.tab-btn.active { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }

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

/* Recreation chips */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
  color: var(--navy-soft);
  font-weight: 500;
}

/* FAQ */
.faq-list { display: grid; gap: 0.9rem; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 0.9rem; font-size: 0.93rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.5rem; }
.cta-inner p { color: rgba(255,255,255,0.75); margin: 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-brand .brand-text { color: var(--white); margin-left: 0.5rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-links h4 { color: var(--gold-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.footer-links a { display: block; font-size: 0.9rem; margin-bottom: 0.7rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.3rem 0; }
.footer-bottom p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); text-align: center; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Tip box & inline CTA links */
.tip-box {
  background: rgba(200, 155, 60, 0.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.3rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.94rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.inline-cta:hover { color: var(--gold); border-color: var(--gold); }

/* Coordinates badge */
.coord-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--gold-light);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}

/* Map embed */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Route guide cards */
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.route-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}
.route-card h4 { font-size: 1rem; margin-bottom: 0.6rem; }
.route-card p { font-size: 0.92rem; margin: 0; }

/* Compass grid */
.compass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.compass-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1rem;
}
.compass-dir {
  display: block;
  font-family: "Poppins", sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.5rem;
}
.compass-card p { margin: 0; font-size: 0.92rem; color: var(--navy-soft); font-weight: 500; }

/* Responsive */
@media (max-width: 960px) {
  .route-grid { grid-template-columns: 1fr; }
  .compass-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .price-tabs, .apartment-grid { grid-template-columns: 1fr; }
  .landmark-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.3rem 0 0.2rem 1rem;
    min-width: 0;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; transform: none; left: auto; }
  .header-actions .btn-primary { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .landmark-grid, .sector-grid { grid-template-columns: 1fr; }
  .two-col-list { grid-template-columns: 1fr; }
  .compass-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 1.8rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
