:root {
  --navy: #07111c;
  --navy-2: #0e1c2c;
  --navy-3: #162838;
  --cream: #f4efe6;
  --ivory: #fbf8f2;
  --sand: #e7dcc8;
  --gold: #c6a46a;
  --gold-2: #e0c48a;
  --gold-3: #a8854a;
  --ink: #161410;
  --muted: #6d675e;
  --line: rgba(198, 164, 106, 0.28);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 17, 28, 0.18);
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1360px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.section {
  padding: 7.5rem 0;
}

.section-head {
  width: 100%;
  max-width: none;
  margin-bottom: 3.5rem;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0.85rem 0 1.1rem;
  max-width: none;
}

.section-head > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: min(100%, 80rem);
}

.section-head > p:not(.eyebrow) + p {
  margin-top: 1.1rem;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 17, 28, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(198, 164, 106, 0.18);
}

.nav-inner {
  width: min(1360px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.nav .brand {
  flex: 0 1 auto;
  max-width: 20rem;
}

.brand img {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.brand-divider {
  width: 1px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.28);
}

.brand-name {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.nav .brand-name {
  font-size: clamp(0.92rem, 1.05vw + 0.55rem, 1.18rem);
  letter-spacing: 0.045em;
  line-height: 1.18;
}

.footer .brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  flex-shrink: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  padding: 0.95rem 1.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 500;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}

.nav-inner > .btn {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: white;
  position: relative;
  margin-inline: auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  animation: kenburns 28s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.42) 0%, rgba(7, 17, 28, 0.18) 38%, rgba(7, 17, 28, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 17, 28, 0.55), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto 5.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.85vw, 4.9rem);
  margin: 0.45rem 0 0.35rem;
  font-weight: 400;
  max-width: min(20ch, 100%);
  line-height: 1.12;
  text-wrap: balance;
}

.hero-kicker {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--gold-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 640px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 1.4rem 0 2.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 920px;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--gold-2);
}

.hero-stats span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 2.2rem;
  z-index: 2;
  writing-mode: vertical-rl;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
}

/* OVERVIEW */
.overview {
  background: var(--ivory);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

.overview-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0.8rem 0 1.3rem;
}

.overview-copy p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.overview-points {
  display: grid;
  gap: 1rem;
}

.overview-points article {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.overview-points article:first-child {
  padding-top: 0;
  border-top: 0;
}

.overview-points h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.overview-visual {
  position: relative;
}

.overview-visual img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.overview-badge {
  position: absolute;
  left: -28px;
  bottom: 42px;
  background: var(--navy);
  color: var(--cream);
  padding: 1.4rem 1.6rem;
  max-width: 220px;
}

.overview-badge span {
  display: block;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-bottom: 0.4rem;
}

.overview-badge strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.split-features {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: stretch;
}

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
}

.feature-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--navy);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.feature-card:hover img {
  transform: scale(1.06);
}

.feature-card .copy {
  flex: 1;
  padding: 1.85rem 1.7rem 2rem;
  background: var(--cream);
}

.feature-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.feature-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.85rem;
}

.feature-card .copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* KEY POINTS */
.keypoints {
  background: var(--cream);
}

.keypoints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: stretch;
}

.keypoints-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--ivory);
}

.keypoints-media {
  overflow: hidden;
  width: 100%;
  background: var(--navy);
}

.keypoints-card img {
  width: 100%;
  height: auto;
  display: block;
}

.keypoints-card .copy {
  flex: 1;
  padding: 1.85rem 1.7rem 2rem;
}

.keypoints-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.keypoints-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.85rem;
}

.keypoints-card .copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* LOCATION */
.location {
  background: var(--navy);
  color: var(--cream);
}

.location .section-head > p:not(.eyebrow),
.location-copy p {
  color: rgba(244, 239, 230, 0.72);
}

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 2.4rem;
}

.time-card {
  border: 1px solid rgba(198, 164, 106, 0.22);
  padding: 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
}

.time-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.time-card span {
  font-size: 0.86rem;
  color: rgba(244, 239, 230, 0.75);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.community-stats li {
  list-style: none;
}

.community-stats b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold-2);
  font-weight: 500;
}

.community-stats span {
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.65);
}

.attraction-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.15rem 0.85rem;
}

.attraction-grid figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
  height: 100%;
}

.attraction-grid figure:first-child {
  grid-row: 1 / 3;
}

.attraction-media {
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  background: var(--navy-3);
}

.attraction-grid figure:first-child .attraction-media {
  min-height: 432px;
}

.attraction-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.attraction-grid figure:hover img {
  transform: scale(1.05);
}

.attraction-grid figcaption {
  padding: 0.75rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* RESIDENCES */
.residences {
  background: var(--cream);
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.unit-card {
  background: var(--ivory);
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid rgba(198, 164, 106, 0.2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.unit-card .bed {
  color: var(--gold-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.unit-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 0.45rem 0 1.1rem;
}

.unit-card dl {
  display: grid;
  gap: 0.7rem;
}

.unit-card dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.unit-card dd {
  font-size: 1.05rem;
  margin: 0.1rem 0 0;
}

.floorplans {
  margin-top: 4.5rem;
}

.floorplans > p:not(.eyebrow) {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: min(100%, 80rem);
}

.floor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.6rem;
}

.floor-tabs button {
  background: transparent;
  border: 1px solid rgba(198, 164, 106, 0.35);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.floor-tabs button.active,
.floor-tabs button:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.floor-stage {
  background: var(--ivory);
  padding: 1.5rem;
  border: 1px solid rgba(198, 164, 106, 0.18);
}

.floor-stage img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  background: #fff;
}

.floor-panel {
  display: none;
}

.floor-panel.active {
  display: block;
}

/* DOWNLOADS */
.downloads {
  background: var(--cream);
}

.download-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  margin-bottom: 3.2rem;
}

.download-hero-media {
  min-height: 320px;
}

.download-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-hero-copy {
  padding: 3rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-hero-copy .display {
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  margin: 0.7rem 0 1rem;
}

.download-hero-copy p:not(.eyebrow) {
  color: rgba(244, 239, 230, 0.72);
  max-width: 36rem;
  margin-bottom: 1.6rem;
}

.download-plans-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.download-plans-head .display {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0.55rem 0 0.5rem;
}

.download-plans-head p:not(.eyebrow) {
  color: var(--muted);
  max-width: 42rem;
}

.download-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.download-gallery figure {
  background: var(--ivory);
  border: 1px solid rgba(198, 164, 106, 0.22);
}

.download-gallery button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0.85rem;
  background: #fff;
  cursor: pointer;
}

.download-gallery img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #fff;
}

.download-gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink);
}

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

  .download-hero-media {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }

  .download-hero-copy {
    padding: 2.2rem 1.6rem 2.4rem;
  }

  .download-plans-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-gallery {
    grid-template-columns: 1fr;
  }

  .download-gallery img {
    height: 280px;
  }
}

/* AMENITIES */
.amenities {
  background: var(--ivory);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem 0.85rem;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
}

.amenity-media {
  overflow: hidden;
  height: 280px;
  background: var(--navy);
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.amenity-card:hover img {
  transform: scale(1.08);
}

.amenity-card span {
  padding: 0.9rem 0.05rem 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.amenity-card:nth-child(1),
.amenity-card:nth-child(6) {
  grid-column: span 2;
}

.amenity-card:nth-child(1) .amenity-media,
.amenity-card:nth-child(6) .amenity-media {
  height: 360px;
}

.philosophy {
  margin-top: 2rem;
}

.philosophy {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.philosophy span {
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold-3);
}

/* GALLERY */
.gallery {
  background: var(--navy-2);
  color: var(--cream);
}

.gallery .section-head > p:not(.eyebrow) {
  color: rgba(244, 239, 230, 0.7);
}

.masonry {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  grid-auto-rows: 210px;
  gap: 0.8rem;
}

.masonry button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.masonry button:hover img,
.masonry button:focus-visible img {
  transform: scale(1.06);
}

.masonry .tall { grid-row: span 2; }
.masonry .wide { grid-column: span 2; }
.masonry .heroish { grid-row: span 2; grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.4rem;
}

/* PAYMENT */
.payment {
  background: var(--cream);
}

.pay-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  color: var(--gold-3);
  font-weight: 500;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.pay-aside {
  background: var(--navy);
  color: var(--cream);
  padding: 2.4rem 2rem;
  min-height: 100%;
}

.pay-aside h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.pay-aside p {
  color: rgba(244, 239, 230, 0.72);
  margin-bottom: 1.4rem;
}

.pay-aside ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.pay-aside li {
  padding-left: 1.1rem;
  position: relative;
}

.pay-aside li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.55rem;
  border-radius: 50%;
}

/* ENQUIRE */
.enquire {
  position: relative;
  color: white;
  overflow: hidden;
}

.enquire-bg {
  position: absolute;
  inset: 0;
}

.enquire-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquire-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 28, 0.88) 0%, rgba(7, 17, 28, 0.72) 48%, rgba(7, 17, 28, 0.42) 100%);
}

.enquire-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.enquire h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin: 0.7rem 0 1rem;
}

.enquire .lead {
  color: rgba(255, 255, 255, 0.78);
}

.form {
  position: relative;
  z-index: 2;
  background: rgba(251, 248, 242, 0.96);
  color: var(--ink);
  padding: 2rem 1.7rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  border: 1px solid rgba(198, 164, 106, 0.35);
  background: white;
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: 8.1rem 1fr;
  align-items: stretch;
  border: 1px solid rgba(198, 164, 106, 0.35);
  background: white;
  text-transform: none;
  letter-spacing: 0;
}

.phone-field:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form .phone-field select,
.form .phone-field input,
.form .phone-field .code-picker-btn {
  border: 0;
  background-color: transparent;
  min-width: 0;
}

.form .phone-field select:focus,
.form .phone-field input:focus,
.form .phone-field .code-picker-btn:focus {
  outline: none;
}

.form .phone-field select {
  appearance: none;
  -webkit-appearance: none;
  border-right: 1px solid rgba(198, 164, 106, 0.28);
  padding: 0.85rem 1.85rem 0.85rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c6a46a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.5L6 6l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 11px 7px;
}

.form .phone-field select.is-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form .phone-field input {
  padding-left: 0.95rem;
}

.code-picker {
  position: relative;
}

.code-picker-btn {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  width: 100%;
  height: 100%;
  padding: 0.85rem 1.7rem 0.85rem 0.85rem;
  border-right: 1px solid rgba(198, 164, 106, 0.28);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c6a46a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.5L6 6l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 11px 7px;
}

.code-picker-btn .code-iso {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.code-picker-btn .code-dial {
  font-variant-numeric: tabular-nums;
}

.code-picker.open .code-picker-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c6a46a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1.5 6.5L6 2l4.5 4.5'/%3E%3C/svg%3E");
}

.code-picker-list {
  position: absolute;
  top: calc(100% + 8px);
  left: -1px;
  z-index: 30;
  width: min(22rem, 78vw);
  max-height: 17.5rem;
  overflow: auto;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fffdf8;
  border: 1px solid rgba(198, 164, 106, 0.38);
  box-shadow: var(--shadow);
}

.code-picker-group {
  padding: 0.7rem 1rem 0.35rem;
  color: var(--gold-3);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.code-picker-list [role="option"] {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 1rem;
  color: var(--ink);
  font-size: 0.92rem;
  cursor: pointer;
}

.code-picker-list [role="option"] span:last-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.code-picker-list [role="option"]:hover,
.code-picker-list [role="option"].is-active {
  background: rgba(198, 164, 106, 0.12);
}

.code-picker-list [role="option"][aria-selected="true"] {
  background: rgba(198, 164, 106, 0.18);
}

.form textarea {
  min-height: 90px;
  resize: vertical;
}

.form .btn {
  margin-top: 0.4rem;
}

.thanks {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.thanks h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.form.submitted .form-grid {
  display: none;
}

.form.submitted .thanks {
  display: block;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  color: #b42318;
  font-size: 0.9rem;
  margin: 0.2rem 0 0;
}

.form-alert[hidden] {
  display: none;
}

/* FOOTER */
.footer {
  background: #050b12;
  color: rgba(244, 239, 230, 0.7);
  padding: 3.2rem 0 2rem;
  font-size: 0.88rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand img {
  height: 16px;
}

.footer-brand p {
  margin-top: 0.8rem;
  white-space: nowrap;
}

.footer a {
  color: var(--gold-2);
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.52);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .reveal,
  .feature-card img,
  .amenity-card img,
  .masonry img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1024px) {
  .overview-grid,
  .location-layout,
  .pay-grid,
  .enquire-wrap,
  .keypoints-grid {
    grid-template-columns: 1fr;
  }

  .unit-grid,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .amenity-card:nth-child(1),
  .amenity-card:nth-child(6) {
    grid-column: span 1;
  }

  .amenity-card:nth-child(1) .amenity-media,
  .amenity-card:nth-child(6) .amenity-media {
    height: 280px;
  }

  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .masonry .heroish,
  .masonry .wide {
    grid-column: span 2;
  }

  .overview-visual img {
    height: 480px;
  }

  .overview-badge {
    left: 16px;
  }

  .attraction-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .attraction-grid figure:first-child {
    grid-row: auto;
    grid-column: span 2;
    min-height: 0;
  }

  .attraction-grid figure:first-child .attraction-media {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  :root { --nav-h: 72px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(7, 17, 28, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.5rem 1.8rem;
    display: none;
    gap: 1.1rem;
  }

  .nav.open .nav-links { display: flex; }

  .nav .btn { display: none; }

  .hero-stats,
  .split-features,
  .keypoints-grid,
  .times,
  .community-stats,
  .unit-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    aspect-ratio: 16 / 11;
  }

  .section { padding: 5rem 0; }

  .scroll-hint { display: none; }

  .footer-top { flex-direction: column; }

  .hero h1 {
    font-size: clamp(2.15rem, 7vw, 3.1rem);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-brand p {
    white-space: normal;
  }

  .phone-field {
    grid-template-columns: 7.6rem 1fr;
  }

  .form .phone-field select,
  .code-picker-btn {
    font-size: 0.88rem;
    padding-left: 0.7rem;
    padding-right: 1.55rem;
  }

  .amenity-grid,
  .masonry,
  .attraction-grid {
    grid-template-columns: 1fr;
  }

  .masonry .heroish,
  .masonry .wide,
  .attraction-grid figure:first-child {
    grid-column: span 1;
  }

  .amenity-media,
  .amenity-card:nth-child(1) .amenity-media,
  .amenity-card:nth-child(6) .amenity-media {
    height: 240px;
  }

  .attraction-grid figure:first-child .attraction-media {
    min-height: 220px;
  }

  .hero-content { margin-bottom: 3.2rem; }

  .hero h1 {
    font-size: clamp(2.05rem, 8.2vw, 2.7rem);
    max-width: 100%;
  }
}

.enquire-cta {
  background: rgba(251, 248, 242, 0.96);
  color: var(--ink);
  padding: 2.4rem 2rem;
}

.enquire-cta h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.enquire-cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

body.enquire-open {
  overflow: hidden;
}

.enquire-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  overflow: auto;
  padding: 4vh 1.25rem;
  background: rgba(7, 17, 28, 0.74);
  backdrop-filter: blur(12px);
}

.enquire-modal.open {
  display: block;
}

.enquire-modal-dialog {
  position: relative;
  width: min(540px, 100%);
  margin: min(6vh, 3.5rem) auto;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2.15rem 1.7rem 1.6rem;
}

.enquire-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 164, 106, 0.4);
  background: transparent;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.enquire-modal-close:hover,
.enquire-modal-close:focus-visible {
  border-color: var(--gold);
  color: var(--gold-3);
  outline: none;
}

.enquire-modal .eyebrow {
  padding-right: 2.5rem;
}

.enquire-modal-dialog > .display {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.7rem 0 0.7rem;
}

.enquire-modal-lead {
  color: var(--muted);
  margin-bottom: 1.35rem;
  font-size: 0.98rem;
}

.enquire-modal .form {
  background: transparent;
  padding: 0;
}

@media (max-width: 820px) {
  .nav .brand {
    max-width: none;
  }

  .nav .brand-name {
    font-size: 0.92rem;
    letter-spacing: 0.03em;
  }
}

/* WhatsApp widget — same pattern as theupsides.ae (international only) */
#whatsapp-widget[hidden] {
  display: none !important;
}

.whatsapp-fab {
  position: fixed;
  z-index: 60;
  left: 1rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(7, 17, 28, 0.28);
  transition: transform 0.2s var(--ease), filter 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  filter: brightness(0.95);
  box-shadow: 0 16px 36px rgba(7, 17, 28, 0.34);
  outline: none;
}

.whatsapp-fab:active {
  transform: scale(0.97);
}

.whatsapp-prompt {
  position: fixed;
  z-index: 60;
  left: 1rem;
  right: 1rem;
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.whatsapp-prompt[hidden] {
  display: none !important;
}

.whatsapp-prompt-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-prompt-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  padding-right: 2.2rem;
  margin-bottom: 0.45rem;
}

.whatsapp-prompt p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.whatsapp-prompt-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  height: 2.75rem;
  border-radius: 4px;
  background: #25d366;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}

.whatsapp-prompt-cta:hover,
.whatsapp-prompt-cta:focus-visible {
  filter: brightness(0.95);
  outline: none;
}

body.enquire-open #whatsapp-widget {
  display: none !important;
}

@media (min-width: 640px) {
  .whatsapp-fab {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .whatsapp-prompt {
    left: 1.5rem;
    right: auto;
    width: 22.5rem;
    bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
}
