@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600;700;800&display=swap");

/* ==========================================================================
   SIGNATURE 51 — COMPLETE PREMIUM LUXURY STYLESHEET
   Font Pair: Marcellus + Outfit
   Theme: Navy · Gold · Warm Beige
   Purpose: Premium real-estate landing page
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  --gold: #D4AF37;
  --gold-soft: #E8CC73;
  --gold-deep: #A9851F;

  --navy: #0B132B;
  --navy-soft: #16213E;
  --navy-deep: #071022;
  --footer-navy: #08101F;

  --beige: #F8F6F1;
  --beige-soft: #FFF9EA;
  --white: #FFFFFF;
  --black: #050505;

  --heading: #101010;
  --body-text: #5B5B5B;
  --muted: #777777;

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --container-max: 1320px;
  --container-pad: clamp(1rem, 5vw, 5rem);
  --section-pad: clamp(4.25rem, 8vw, 7.5rem);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(11, 19, 43, 0.12);
  --shadow-card: 0 26px 60px rgba(11, 19, 43, 0.14);
  --shadow-luxury: 0 32px 90px rgba(11, 19, 43, 0.24);
  --shadow-gold: 0 20px 46px rgba(212, 175, 55, 0.34);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.25s var(--ease);
  --normal: 0.4s var(--ease);
  --slow: 0.75s var(--ease);
}

/* ==========================================================================
   2. RESET + BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.76;
  letter-spacing: 0.01em;
  color: var(--body-text);
  background: var(--beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
  background: #eee8d8;
}

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

button {
  cursor: pointer;
}

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

p {
  max-width: 68ch;
  margin: 0 0 1rem;
}

ul,
ol {
  margin-top: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 95px;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  margin-top: 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.008em;
}

h1 {
  font-size: clamp(3rem, 5.6vw, 5.15rem);
  text-transform: uppercase;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 4.1vw, 3.65rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

strong,
b {
  font-weight: 600;
}

.text-gold {
  color: var(--gold);
}

.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white p {
  color: var(--white);
}

/* Better readable small text */
small,
.small {
  font-size: 0.86rem;
}

/* ==========================================================================
   4. GLOBAL BACKGROUND DETAILS
   ========================================================================== */

body::before {
  content: "";
  position: fixed;
  width: 720px;
  height: 720px;
  top: -350px;
  right: -290px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  width: 540px;
  height: 540px;
  bottom: -260px;
  left: -230px;
  background: radial-gradient(circle, rgba(11, 19, 43, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   5. LAYOUT
   ========================================================================== */

.container-xl {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.055), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(212, 175, 55, 0.045), transparent 34%);
  pointer-events: none;
}

.section--white {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.section--beige {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent 36%),
    var(--beige);
}

.section--navy {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.11), transparent 33%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: rgba(255, 255, 255, 0.76);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.35rem, 4.5vw, 4rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center h2,
.section-head.center p {
  margin-inline: auto;
}

.divider-thin {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   6. EYEBROW + SIGNATURE RING
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1.05rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex: 0 0 auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.ring-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin: 0 auto clamp(2.35rem, 4.5vw, 3.35rem);
}

.ring-divider .line {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ring-divider .line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ring-51 {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.btn-luxury,
.btn-outline-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.92rem 2rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--normal),
    background var(--normal),
    border-color var(--normal),
    color var(--normal),
    box-shadow var(--normal);
}

.btn-luxury {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.25);
}

.btn-luxury::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.btn-luxury:hover::before,
.btn-luxury:focus-visible::before {
  left: 150%;
  transition: left 0.8s var(--ease);
}

.btn-luxury:hover,
.btn-luxury:focus-visible {
  transform: translateY(-3px);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-outline-luxury {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.btn-outline-luxury:hover,
.btn-outline-luxury:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block-luxury {
  width: 100%;
}

/* ==========================================================================
   8. NAVBAR
   ========================================================================== */

.navbar-luxury {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.15rem 0;
  background: transparent;
  transition:
    padding var(--normal),
    background var(--normal),
    box-shadow var(--normal),
    backdrop-filter var(--normal);
}

.navbar-luxury.is-scrolled {
  padding: 0.72rem 0;
  background: rgba(11, 19, 43, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.navbar-luxury .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.navbar-luxury .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-luxury .brand img {
  width: auto;
  height: 38px;
  object-fit: contain;
  background: transparent;
}

.navbar-luxury .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-luxury .nav-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar-luxury .nav-links a::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--normal);
}

.navbar-luxury .nav-links a:hover::after,
.navbar-luxury .nav-links a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

/* ==========================================================================
   9. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 19, 43, 0.96) 0%, rgba(11, 19, 43, 0.72) 44%, rgba(11, 19, 43, 0.48) 100%),
    linear-gradient(180deg, rgba(11, 19, 43, 0.45), rgba(11, 19, 43, 0.94));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: 1;
  background: linear-gradient(to top, rgba(248, 246, 241, 1), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 5rem;
  padding: clamp(1.6rem, 3.5vw, 2.65rem);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-luxury);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__sub {
  max-width: 560px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
}

.badge-ring {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  margin-bottom: 1.55rem;
  padding: 0.48rem 1.05rem;
  border: 1px solid rgba(212, 175, 55, 0.82);
  border-radius: var(--radius-pill);
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.1rem;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ==========================================================================
   10. ABOUT
   ========================================================================== */

.about__media {
  position: relative;
}

.about__media .frame {
  position: relative;
  margin-left: 1.5rem;
  padding: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-luxury);
}

.about__media .frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-md);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
  filter: contrast(1.04) saturate(1.06);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.35rem;
}

.stat-item {
  padding-left: 1rem;
  border-left: 1px solid rgba(212, 175, 55, 0.44);
}

.stat-num {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--body-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ==========================================================================
   11. CARDS
   ========================================================================== */

.highlight-card,
.invest-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition:
    transform var(--normal),
    border-color var(--normal),
    background var(--normal),
    box-shadow var(--normal);
}

.highlight-card {
  padding: 2.05rem 1.55rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 19, 43, 0.07);
  box-shadow: 0 16px 40px rgba(11, 19, 43, 0.08);
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 50%;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.75);
  background: linear-gradient(180deg, #ffffff, #fffaf0);
  box-shadow: var(--shadow-card);
}

.icon-ring {
  width: 50px;
  height: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
  transition:
    transform var(--normal),
    background var(--normal),
    color var(--normal);
}

.highlight-card:hover .icon-ring {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(360deg);
}

.highlight-card h3,
.invest-card h3,
.amenity-card__body h3,
.timeline-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.006em;
}

.highlight-card h3,
.invest-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.28rem;
}

.highlight-card p,
.invest-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

/* ==========================================================================
   12. AMENITIES
   ========================================================================== */

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

.amenity-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-md);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.amenity-card--tall {
  grid-column: span 6;
  min-height: 510px;
}

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

.amenity-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.07);
  transition: transform var(--slow);
}

.amenity-card--tall img {
  aspect-ratio: 4 / 5;
}

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

.amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.02) 28%, rgba(11, 19, 43, 0.92) 100%);
  opacity: 0.88;
  transition: opacity var(--normal);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.45rem;
  color: var(--white);
}

.amenity-card__body .icon-ring {
  width: 42px;
  height: 42px;
  margin-bottom: 0.8rem;
  background: rgba(11, 19, 43, 0.45);
}

.amenity-card__body h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 1.28rem;
}

.amenity-card__body p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.65;
  transition:
    max-height var(--normal),
    opacity var(--normal),
    margin var(--normal);
}

.amenity-card:hover .amenity-card__body p,
.amenity-card:focus-within .amenity-card__body p {
  max-height: 95px;
  opacity: 1;
  margin-top: 0.35rem;
}

/* ==========================================================================
   13. PARALLAX BANNER
   ========================================================================== */

.banner-parallax {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 19, 43, 0.78), rgba(11, 19, 43, 0.88)),
    url("../images/amenity-sports-court.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.banner-parallax__inner {
  max-width: 720px;
  padding-inline: 1.5rem;
}

.banner-parallax h2 {
  color: var(--white);
  margin-inline: auto;
  margin-bottom: 1.55rem;
}

/* ==========================================================================
   14. INVEST
   ========================================================================== */

.invest-card {
  padding: 2.15rem 1.65rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(12px);
}

.invest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.86);
  background: rgba(212, 175, 55, 0.075);
}

.invest-card h3 {
  color: var(--white);
}

.invest-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
   15. LOCATION + MAP
   ========================================================================== */

.location-timeline {
  position: relative;
  padding-left: 2.25rem;
  border-left: 1px solid rgba(212, 175, 55, 0.42);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.58rem;
  top: 0.42rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.16);
}

.timeline-item .tag {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 1.18rem;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.66;
}

.map-frame {
  padding: 0.55rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-luxury);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  border-radius: calc(var(--radius-md) - 6px);
}

/* ==========================================================================
   16. ENQUIRY FORM
   ========================================================================== */

.enquiry-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 19, 43, 0.93), rgba(11, 19, 43, 0.985)),
    url("../images/hero-bungalow-night.jpg") center / cover no-repeat;
}

.enquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(212, 175, 55, 0.15), transparent 32%);
  pointer-events: none;
}

.enquiry-card {
  padding: clamp(1.6rem, 3.5vw, 2.65rem);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.072);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-luxury);
}

.form-control-luxury {
  width: 100%;
  min-height: 48px;
  margin-bottom: 1rem;
  padding: 0.92rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  transition:
    border-color var(--fast),
    background var(--fast),
    box-shadow var(--fast);
}

.form-control-luxury::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control-luxury:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

textarea.form-control-luxury {
  min-height: 118px;
  resize: vertical;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.35rem;
  margin-top: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trust-badge i {
  color: var(--gold);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-xs);
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.form-success.is-visible {
  display: block;
}

/* ==========================================================================
   17. FAQ
   ========================================================================== */

.accordion-luxury .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11, 19, 43, 0.12);
}

.accordion-luxury .accordion-button {
  padding: 1.35rem 0;
  background: transparent;
  box-shadow: none;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
}

.accordion-luxury .accordion-button:not(.collapsed) {
  color: var(--gold);
}

.accordion-luxury .accordion-body {
  padding: 0 0 1.4rem;
  font-size: 0.94rem;
  line-height: 1.72;
}

/* ==========================================================================
   18. FINAL CTA
   ========================================================================== */

.final-cta {
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at center top, rgba(212, 175, 55, 0.12), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 2rem;
  color: var(--white);
}

/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.footer-luxury {
  padding: clamp(3.4rem, 7vw, 5rem) 0 2rem;
  background: var(--footer-navy);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-luxury .brand img,
.footer-luxury img {
  width: auto;
  height: 36px;
  margin-bottom: 1.2rem;
  object-fit: contain;
  background: transparent;
}

.footer-luxury h4 {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-luxury ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-luxury li {
  margin-bottom: 0.66rem;
}

.footer-luxury a {
  transition: color var(--fast);
}

.footer-luxury a:hover,
.footer-luxury a:focus-visible {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    border-color var(--fast),
    color var(--fast),
    transform var(--fast);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  margin-top: 2.4rem;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* ==========================================================================
   20. FLOATING CTA
   ========================================================================== */

.float-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.48rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  transition: transform var(--fast);
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  transform: scale(1.08);
  color: var(--white);
}

.back-to-top {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 900;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--fast),
    transform var(--fast);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 950;
  padding: 0.75rem 1rem;
  background: rgba(11, 19, 43, 0.97);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   21. IMAGE PLACEHOLDERS + PERFORMANCE HELPERS
   ========================================================================== */

.image-note {
  margin-top: 8px;
  color: #9a7b2f;
  font-size: 12px;
  font-style: italic;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, #eee8d8 8%, #f6f0df 18%, #eee8d8 33%);
  background-size: 200% 100%;
  animation: imageShimmer 1.4s linear infinite;
}

@keyframes imageShimmer {
  to { background-position-x: -200%; }
}

.hero__media,
.about__media .frame,
.amenity-card {
  background:
    linear-gradient(110deg, #eee8d8 8%, #f6f0df 18%, #eee8d8 33%);
  background-size: 200% 100%;
}

/* ==========================================================================
   22. RESPONSIVE — LARGE DESKTOP
   ========================================================================== */

@media (min-width: 1400px) {
  :root {
    --container-max: 1440px;
  }

  .hero__content {
    max-width: 820px;
  }

  .navbar-luxury .brand img {
    height: 42px;
  }
}

/* ==========================================================================
   23. RESPONSIVE — LAPTOP
   ========================================================================== */

@media (max-width: 1199px) {
  .navbar-luxury .nav-links {
    gap: 1.25rem;
  }

  h1 {
    font-size: clamp(2.75rem, 5vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
  }

  .amenity-card {
    min-height: 300px;
  }
}

/* ==========================================================================
   24. RESPONSIVE — iPAD PRO / TABLET LANDSCAPE
   ========================================================================== */

@media (max-width: 1024px) {
  .container-xl {
    padding-inline: 2rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content {
    max-width: 700px;
  }

  .about__media .frame {
    margin-left: 0;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenity-card,
  .amenity-card--tall,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3) {
    grid-column: span 1;
    min-height: 330px;
  }
}

/* ==========================================================================
   25. RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 991px) {
  [id] {
    scroll-margin-top: 82px;
  }

  .navbar-luxury .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(11, 19, 43, 0.985);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--normal),
      opacity var(--normal);
  }

  .navbar-luxury .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-luxury .nav-links a {
    font-size: 0.95rem;
  }

  .navbar-luxury .btn-luxury.nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    text-align: center;
  }

  .hero__content {
    margin-inline: auto;
  }

  .hero h1,
  .hero__sub {
    margin-inline: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .banner-parallax {
    background-attachment: scroll;
  }
}

/* ==========================================================================
   26. RESPONSIVE — TABLET PORTRAIT
   ========================================================================== */

@media (max-width: 768px) {
  body {
    font-size: 15.8px;
  }

  .section {
    padding: 4.2rem 0;
  }

  .container-xl {
    padding-inline: 1.35rem;
  }

  .navbar-luxury {
    padding: 0.92rem 0;
  }

  .navbar-luxury .brand img {
    height: 34px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__content {
    padding: 1.55rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-frame iframe {
    height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 4.15rem;
  }
}

/* ==========================================================================
   27. RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 575px) {
  body {
    font-size: 15px;
    line-height: 1.72;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.13;
  }

  h3 {
    font-size: 1.35rem;
  }

  p {
    max-width: 100%;
  }

  .container-xl {
    padding-inline: 1rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero__content {
    width: 100%;
    padding: 1.2rem;
  }

  .hero__sub {
    font-size: 0.92rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .btn-luxury,
  .btn-outline-luxury {
    width: 100%;
    min-height: 44px;
    padding: 0.85rem 1.05rem;
    font-size: 0.68rem;
  }

  .badge-ring {
    font-size: 0.6rem;
    padding: 0.42rem 0.82rem;
  }

  .ring-divider .line {
    width: 40px;
  }

  .ring-51 {
    width: 42px;
    height: 42px;
  }

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

  .amenity-card,
  .amenity-card--tall {
    min-height: 285px;
  }

  .highlight-card,
  .invest-card,
  .enquiry-card {
    padding: 1.35rem;
  }

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

  .about__media .frame {
    margin-left: 0;
    padding: 0.65rem;
  }

  .about__media .frame::before {
    inset: 12px -12px -12px 12px;
  }

  .map-frame iframe {
    height: 280px;
  }

  .trust-badges {
    gap: 0.75rem;
  }

  .float-whatsapp {
    width: 52px;
    height: 52px;
    right: 1rem;
    bottom: 5.35rem;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
    left: 1rem;
    bottom: 5.35rem;
  }
}

/* ==========================================================================
   28. RESPONSIVE — SMALL MOBILE
   ========================================================================== */

@media (max-width: 375px) {
  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .badge-ring {
    font-size: 0.56rem;
  }

  .hero__content {
    padding: 1rem;
  }

  .navbar-luxury .brand img {
    height: 30px;
  }
}

/* ==========================================================================
   29. MOTION SAFETY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   30. PRINT
   ========================================================================== */

@media print {
  .navbar-luxury,
  .float-whatsapp,
  .back-to-top,
  .sticky-mobile-cta,
  .scroll-indicator {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 2rem 0;
  }
}
