@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
   SIGNATURE 51 — PREMIUM LUXURY CSS
   Font: Cormorant Garamond + Manrope
========================================================= */

:root {
  --gold: #D4AF37;
  --gold-soft: #E8CC73;
  --navy: #0B132B;
  --navy-soft: #16213E;
  --beige: #F8F6F1;
  --white: #FFFFFF;
  --black: #050505;
  --heading: #101010;
  --body-text: #5B5B5B;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;

  --container-pad: clamp(1rem, 5vw, 5rem);
  --section-pad: clamp(4rem, 8vw, 7.5rem);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 18px 45px rgba(11, 19, 43, 0.12);
  --shadow-luxury: 0 30px 80px rgba(11, 19, 43, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: var(--body-text);
  background: var(--beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  max-width: 68ch;
  margin: 0 0 1rem;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.025em;
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.9rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

strong,
b {
  font-weight: 800;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* BACKGROUND GLOW */
body::before {
  content: "";
  position: fixed;
  width: 700px;
  height: 700px;
  top: -330px;
  right: -280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), 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;
}

/* LAYOUT */
.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.06), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(212,175,55,0.05), transparent 35%);
  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.10), transparent 36%),
    var(--beige);
}

.section--navy {
  background: linear-gradient(135deg, var(--navy), #071022);
  color: rgba(255,255,255,0.78);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center p {
  margin-inline: auto;
}

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

/* BUTTONS */
.btn-luxury,
.btn-outline-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.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 34px rgba(212,175,55,0.32);
}

.btn-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}

.btn-luxury:hover::before {
  left: 150%;
  transition: 0.8s;
}

.btn-luxury:hover {
  transform: translateY(-3px);
  color: var(--navy);
  box-shadow: 0 22px 50px rgba(212,175,55,0.5);
}

.btn-outline-luxury {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.btn-outline-luxury:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.14);
  color: var(--white);
}

.btn-block-luxury {
  width: 100%;
}

/* NAVBAR */
.navbar-luxury {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.35rem 0;
  background: transparent;
  transition: all 0.45s var(--ease);
}

.navbar-luxury.is-scrolled {
  padding: 0.75rem 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: 1.5rem;
}

.navbar-luxury .brand img {
  height: 42px;
  width: auto;
}

.navbar-luxury .nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-luxury .nav-links a {
  position: relative;
  padding-bottom: 7px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar-luxury .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.navbar-luxury .nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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.92) 0%, rgba(11,19,43,0.62) 48%, rgba(11,19,43,0.35) 100%),
    linear-gradient(180deg, rgba(11,19,43,0.35), rgba(11,19,43,0.92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(248,246,241,1), transparent);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 5rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(212,175,55,0.36);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-luxury);
  border-radius: var(--radius-md);
}

.hero h1 {
  color: var(--white);
}

.hero__sub {
  max-width: 590px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 400;
  line-height: 1.8;
}

.badge-ring {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.scroll-indicator .line {
  width: 1px;
  height: 38px;
  margin: 0 auto 0.5rem;
  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; }
}

/* RING DIVIDER */
.ring-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.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: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

/* ABOUT */
.about__media {
  position: relative;
}

.about__media .frame {
  position: relative;
  margin-left: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow-luxury);
  border-radius: var(--radius-md);
}

.about__media .frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(212,175,55,0.35);
  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.08);
}

/* STATS */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.stat-item {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(212,175,55,0.45);
}

.stat-num {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CARDS */
.highlight-card,
.invest-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: all 0.45s var(--ease);
}

.highlight-card {
  padding: 2.4rem 1.9rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(11,19,43,0.07);
  box-shadow: var(--shadow-soft);
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: -65px;
  right: -65px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 50%;
}

.highlight-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  background: linear-gradient(180deg, #ffffff, #fff9e8);
  box-shadow: 0 34px 70px rgba(11,19,43,0.16);
}

.icon-ring {
  width: 60px;
  height: 60px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  transition: all 0.45s var(--ease);
}

.highlight-card:hover .icon-ring {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(360deg);
}

.highlight-card h3,
.invest-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.highlight-card p,
.invest-card p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0;
}

/* AMENITIES */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.amenity-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.amenity-card--tall {
  grid-column: span 6;
  min-height: 520px;
}

.amenity-card:nth-child(2),
.amenity-card:nth-child(3) {
  grid-column: span 3;
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.08);
  transition: transform 0.75s var(--ease);
}

.amenity-card:hover img {
  transform: scale(1.1);
}

.amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(11,19,43,0.92));
  opacity: 0.88;
  transition: opacity 0.45s var(--ease);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem;
  color: var(--white);
}

.amenity-card__body h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.amenity-card__body p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}

.amenity-card:hover .amenity-card__body p {
  max-height: 90px;
  opacity: 1;
  margin-top: 0.35rem;
}

/* PARALLAX */
.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: 0 1.5rem;
}

.banner-parallax h2 {
  color: var(--white);
  margin-bottom: 1.6rem;
}

/* INVEST */
.invest-card {
  padding: 2.3rem 1.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(212,175,55,0.22);
  backdrop-filter: blur(12px);
}

.invest-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.invest-card h3 {
  color: var(--white);
}

/* LOCATION */
.location-timeline {
  position: relative;
  padding-left: 2.4rem;
  border-left: 1px solid rgba(212,175,55,0.42);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.72rem;
  top: 0.42rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212,175,55,0.16);
}

.timeline-item h3 {
  font-size: 1.18rem;
  font-weight: 700;
}

.timeline-item .tag {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-frame {
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  border-radius: calc(var(--radius-md) - 6px);
}

/* ENQUIRY */
.enquiry-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,19,43,0.92), rgba(11,19,43,0.98)),
    url("../images/hero-bungalow-night.jpg") center / cover no-repeat;
}

.enquiry-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(212,175,55,0.38);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-luxury);
}

.form-control-luxury {
  width: 100%;
  margin-bottom: 1.2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.045);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.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.08);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

textarea.form-control-luxury {
  resize: vertical;
  min-height: 120px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trust-badge i {
  color: var(--gold);
}

/* 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.5rem 0;
  background: transparent;
  box-shadow: none;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.accordion-luxury .accordion-button:not(.collapsed) {
  color: var(--gold);
}

.accordion-luxury .accordion-body {
  padding: 0 0 1.5rem;
  font-size: 0.96rem;
  line-height: 1.75;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #071022);
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 2rem;
  color: var(--white);
}

/* FOOTER */
.footer-luxury {
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  background: #08101F;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.footer-luxury .brand img {
  height: 36px;
  margin-bottom: 1.2rem;
}

.footer-luxury h4 {
  margin-bottom: 1.3rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-luxury ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-luxury li {
  margin-bottom: 0.7rem;
}

.footer-luxury a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  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.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}

/* FLOATING CTA */
.float-whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 16px 34px rgba(0,0,0,0.42);
  transition: transform 0.3s var(--ease);
}

.float-whatsapp:hover {
  transform: scale(1.08);
  color: var(--white);
}

.back-to-top {
  position: fixed;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
}

.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.8rem 1rem;
  background: rgba(11,19,43,0.97);
  border-top: 1px solid rgba(212,175,55,0.4);
}

/* HELPERS */
.text-gold {
  color: var(--gold);
}

.divider-thin {
  width: 100%;
  height: 1px;
  background: rgba(212,175,55,0.3);
}

.image-note {
  margin-top: 8px;
  color: #9a7b2f;
  font-size: 12px;
  font-style: italic;
}

/* RESPONSIVE */

/* Large Desktop */
@media (min-width: 1400px) {
  .container-xl {
    max-width: 1440px;
  }

  .hero__content {
    max-width: 860px;
  }
}

/* Laptop */
@media (max-width: 1199px) {
  .navbar-luxury .nav-links {
    gap: 1.35rem;
  }

  h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
  }

  .amenity-card {
    min-height: 310px;
  }
}

/* iPad Pro / Tablet Landscape */
@media (max-width: 1024px) {
  .container-xl {
    padding-inline: 2rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content {
    max-width: 720px;
  }

  .about__media .frame {
    margin-left: 0;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-card,
  .amenity-card--tall,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3) {
    grid-column: span 1;
    min-height: 340px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .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.98);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
  }

  .navbar-luxury .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-luxury .nav-links a {
    font-size: 1.1rem;
  }

  .navbar-luxury .btn-luxury.nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .hero__content {
    margin-inline: auto;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .banner-parallax {
    background-attachment: scroll;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 4rem 0;
  }

  .container-xl {
    padding-inline: 1.4rem;
  }

  .navbar-luxury {
    padding: 1rem 0;
  }

  .navbar-luxury .brand img {
    height: 36px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__content {
    padding: 1.6rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-frame iframe {
    height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 4.2rem;
  }
}

/* Mobile */
@media (max-width: 575px) {
  body {
    font-size: 15px;
    line-height: 1.75;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.95rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .container-xl {
    padding-inline: 1rem;
  }

  .hero__content {
    width: 100%;
    padding: 1.3rem;
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .btn-luxury,
  .btn-outline-luxury {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 0.75rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .badge-ring {
    font-size: 0.66rem;
    padding: 0.45rem 0.9rem;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card,
  .amenity-card--tall {
    min-height: 285px;
  }

  .highlight-card,
  .invest-card,
  .enquiry-card {
    padding: 1.4rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .about__media .frame {
    margin-left: 0;
    padding: 0.7rem;
  }

  .map-frame iframe {
    height: 280px;
  }

  .trust-badges {
    gap: 0.8rem;
  }

  .float-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 5.4rem;
    right: 1rem;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
    bottom: 5.4rem;
    left: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .badge-ring {
    font-size: 0.62rem;
  }

  .hero__content {
    padding: 1rem;
  }
}

/* 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;
  }
}