:root {
  --bg: #070707;
  --bg2: #11100d;
  --ink: #fff8ec;
  --muted: #cfc5b4;
  --gold: #c9a45c;
  --gold2: #f5d88d;
  --gold3: #8f6b2e;
  --paper: #fff9ef;
  --dark: #14110d;
  --line: rgba(255, 255, 255, 0.14);
  --line-gold: rgba(245, 216, 141, 0.3);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 55px rgba(65, 42, 10, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(
      circle at 20% 8%,
      rgba(245, 216, 141, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 16%,
      rgba(201, 164, 92, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #050505, #12100d 42%, #060606);
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 70%,
    transparent
  );
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, 92vw);
  margin: auto;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  font-size: 0.78rem;
  font-weight: 900;
}
.gold {
  color: var(--gold2);
}
::selection {
  background: rgba(245, 216, 141, 0.32);
  color: #fff;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}
.page-loader div {
  display: grid;
  gap: 8px;
  place-items: center;
  animation: loaderIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.page-loader span {
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  letter-spacing: 0.02em;
}
.page-loader em {
  font-style: normal;
  color: var(--gold2);
  letter-spacing: 0.52em;
  margin-left: 0.52em;
}
.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(
    circle,
    rgba(245, 216, 141, 0.13),
    transparent 64%
  );
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
@keyframes loaderIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.46));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.24);
}
.nav-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.luxury-brand {
  font-family: Playfair Display, Georgia, serif;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-size: 1.8rem;
  letter-spacing: 0.015em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.brand-stars {
  color: var(--gold2);
  font-size: 0.72rem;
  letter-spacing: 0.55em;
  margin-top: 10px;
  margin-left: 3px;
}
.brand-line {
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold2), transparent);
  position: relative;
}
.brand-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 22px var(--gold2);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-weight: 800;
  font-size: 0.93rem;
  color: #f2eadb;
  position: relative;
}
.nav-links > a:not(.btn):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold2);
  transition: width 0.35s ease;
}
.nav-links > a:not(.btn):hover {
  color: var(--gold2);
}
.nav-links > a:not(.btn):hover:after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 23px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #16100a;
  font-weight: 950;
  border: 0;
  box-shadow: 0 16px 38px rgba(201, 164, 92, 0.26);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}
.btn:before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.52),
    transparent 65%
  );
  transform: translateX(-45%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(201, 164, 92, 0.35);
}
.btn:hover:before {
  transform: translateX(45%);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.hamb {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  font-size: 1.45rem;
  padding: 6px 12px;
}
.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.38),
      rgba(0, 0, 0, 0.08)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.86));
  z-index: 1;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(245, 216, 141, 0.13);
  border-radius: 50%;
  z-index: 1;
  animation: slowSpin 28s linear infinite;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.03);
  animation: heroZoom 16s ease-out both;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 164px 0 90px;
}
.hero h1 {
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: 0.92;
  margin: 16px 0 22px;
  max-width: 920px;
  text-wrap: balance;
}
.hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 690px;
  color: #f0e7d8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}
.hero-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-gold);
}
.hero-card strong {
  display: block;
  font-size: 1.6rem;
  color: #fff;
}
.hero-card span {
  color: #d8d0c4;
  font-size: 0.9rem;
}
@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.03);
  }
}
@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}
.section {
  padding: 96px 0;
  position: relative;
}
.section.light {
  background: var(--paper);
  color: #1a1611;
}
.section h2 {
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(2.1rem, 4.3vw, 4.5rem);
  line-height: 1.02;
  margin: 10px 0 20px;
  text-wrap: balance;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 760px;
}
.light .lead {
  color: #5c5248;
}
.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: #111;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease;
}
.photo-card:hover {
  transform: translateY(-10px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.5);
}
.photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18),
    transparent 58%
  );
  transform: translateX(-120%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-card:hover:after {
  transform: translateX(120%);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}
.photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}
.photo-card.tall {
  height: 720px;
}
.photo-card.medium {
  height: 520px;
}
.logo-showcase {
  height: auto !important;
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  padding: 18px;
  background: radial-gradient(
      circle at 50% 40%,
      rgba(245, 216, 141, 0.08),
      transparent 48%
    ),
    #171717;
  border: 1px solid rgba(245, 216, 141, 0.2);
}
.logo-showcase img {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: none !important;
}
.logo-showcase:hover img {
  filter: none;
}
.badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  padding: 18px 20px;
  border-radius: 18px;
  z-index: 2;
}
.badge b {
  display: block;
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.65rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  padding: 28px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border-radius: 24px;
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature:before {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  transform: scaleX(0);
  transition: 0.45s ease;
}
.feature:hover {
  transform: translateY(-10px);
  border-color: var(--line-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
.feature:hover:before {
  transform: scaleX(1);
}
.feature .icon {
  font-size: 2rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature:hover .icon {
  transform: scale(1.18) rotate(-6deg);
}
.feature h3 {
  margin: 12px 0 8px;
  font-size: 1.22rem;
}
.feature p {
  color: #d2cabd;
  margin: 0;
}
.light .feature {
  background: #fff;
  border-color: #eee1c5;
  box-shadow: var(--shadow-soft);
}
.light .feature p {
  color: #62584e;
}
.story {
  background: radial-gradient(
      circle at 15% 20%,
      rgba(201, 164, 92, 0.18),
      transparent 34%
    ),
    linear-gradient(180deg, #15120e, #070707);
}
.story-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.story-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(245, 216, 141, 0.48),
    transparent 40%,
    rgba(255, 255, 255, 0.12)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.amenity {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.amenity:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  background: rgba(245, 216, 141, 0.1);
}
.amenity span {
  color: var(--gold2);
  margin-right: 8px;
}
.masonry {
  columns: 3 290px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--line-gold);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}
.gallery-item img {
  width: 100%;
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
  transform: scale(1.075);
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-weight: 900;
  transform: translateY(10px);
  opacity: 0.92;
  transition: 0.35s ease;
}
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
  color: var(--gold2);
}
.cta {
  background: linear-gradient(
      135deg,
      rgba(201, 164, 92, 0.28),
      rgba(255, 255, 255, 0.04)
    ),
    url("../images/pool-detail.jpg") center/cover;
  position: relative;
  overflow: hidden;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.cta:after {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 216, 141, 0.25),
    transparent 62%
  );
  animation: floatGlow 8s ease-in-out infinite;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta-box {
  max-width: 850px;
}
@keyframes floatGlow {
  50% {
    transform: translate(80px, 30px) scale(1.12);
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}
.contact-card {
  border-radius: 28px;
  padding: 30px;
  background: #fff;
  color: #17120d;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card:hover {
  transform: translateY(-8px);
}
.contact-card a {
  font-weight: 900;
}
.map {
  border: 0;
  width: 100%;
  height: 430px;
  border-radius: 28px;
  filter: saturate(0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.86)),
    var(--page-img) center/cover;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(245, 216, 141, 0.18);
}
.page-hero h1 {
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  line-height: 0.98;
  margin: 12px 0;
  text-wrap: balance;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.suite-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  color: #14110d;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.suite-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.18);
}
.suite-card img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.suite-card:hover img {
  transform: scale(1.055);
}
.suite-card div {
  padding: 26px;
}
.suite-card h3 {
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.footer {
  padding: 60px 0 28px;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer h3,
.footer h4 {
  font-family: Playfair Display, Georgia, serif;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.socials a:hover {
  transform: translateY(-5px) rotate(-6deg);
  background: var(--gold2);
  color: #14110d;
}
.copy {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9f978b;
  font-size: 0.9rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.28s ease both;
}
.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: 18px;
  box-shadow: 0 30px 80px #000;
  animation: zoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 0;
  background: #fff;
  color: #111;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
}

.float-wa:hover {
  transform: translateY(-6px) scale(1.04);
}
@keyframes pulseWa {
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.11),
      0 20px 35px rgba(0, 0, 0, 0.32);
  }
}
.list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.list div {
  display: flex;
  gap: 10px;
}
.list span {
  color: var(--gold);
  font-weight: 900;
}
.two-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.two-img img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.two-img img:hover {
  transform: translateY(-8px) scale(1.015);
}
.notice {
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.28);
  color: #f3dfb2;
}
.light .notice {
  color: #3b2b11;
  background: #fff7e3;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .page-loader {
    display: none;
  }
  .cursor-glow {
    display: none;
  }
}
@media (max-width: 900px) {
  .cursor-glow {
    display: none;
  }
  .hamb {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 22px;
  }
  .nav-links.open {
    display: flex;
    animation: fadeIn 0.25s ease both;
  }
  .hero-cards,
  .grid-3,
  .amenities,
  .footer-grid,
  .contact-grid,
  .suite-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-top: 130px;
  }
  .photo-card.tall,
  .photo-card.medium {
    height: 480px;
  }
  .logo-showcase {
    height: auto !important;
    aspect-ratio: 16/10;
  }
  .section {
    padding: 70px 0;
  }
  .two-img {
    grid-template-columns: 1fr;
  }
  .two-img img {
    height: 360px;
  }
  .brand-name {
    font-size: 1.35rem;
  }
  .brand-line {
    width: 36px;
  }
  .brand-stars {
    font-size: 0.58rem;
  }
  .nav-inner {
    height: 76px;
  }
  .nav-links {
    top: 76px;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .masonry {
    columns: 1;
  }
  .contact-card {
    padding: 24px;
  }
  .page-hero {
    padding-top: 130px;
  }
  .hero-cards {
    margin-top: 34px;
  }
}

.socials {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.34);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s ease, filter 0.32s ease;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 38%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(255, 255, 255, 0.16) 62%,
    transparent 100%
  );
  transform: translateX(-125%) rotate(20deg);
  transition: transform 0.75s ease;
  z-index: 2;
}

.social-icon:hover {
  transform: translateY(-7px) scale(1.08);
  filter: saturate(1.15);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.48);
}

.social-icon:hover::before {
  transform: translateX(125%) rotate(20deg);
}


@keyframes whatsappPulse {
  0% {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42),
      0 0 0 0 rgba(37, 211, 102, 0.48);
  }

  70% {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42),
      0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.experience-stack {
  display: grid;
  gap: 24px;
  height: 720px;
}

.experience-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  isolation: isolate;
}

.experience-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72)),
    radial-gradient(
      circle at 18% 20%,
      rgba(241, 211, 138, 0.24),
      transparent 34%
    );
  pointer-events: none;
}

.experience-photo::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 2;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 100%
  );
  transform: translateX(-120%) rotate(18deg);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.experience-photo:hover::after {
  transform: translateX(120%) rotate(18deg);
}

.experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.experience-photo:hover img {
  transform: scale(1.075);
  filter: saturate(1.12) contrast(1.05);
}

.photo-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.35s ease;
}

.experience-photo:hover .photo-label {
  transform: translateY(-6px);
  background: rgba(10, 10, 10, 0.76);
}

.photo-label span {
  display: block;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.photo-label strong {
  display: block;
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  color: #fff;
}
.experience-stack {
  height: auto;
}

.experience-photo {
  height: 360px;
}
.footer-grid-premium {
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.1fr;
  align-items: start;
}

.footer-about p {
  max-width: 370px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4ecdf;
  font-weight: 750;
  transition: color 0.28s ease, transform 0.28s ease;
}

.footer-links a span {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  color: var(--gold2);
  background: rgba(241, 211, 138, 0.08);
  border: 1px solid rgba(241, 211, 138, 0.18);
  font-size: 0.82rem;
  transition: background 0.28s ease, transform 0.28s ease,
    border-color 0.28s ease;
}

.footer-links a:hover {
  color: var(--gold2);
  transform: translateX(5px);
}

.footer-links a:hover span {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(241, 211, 138, 0.16);
  border-color: rgba(241, 211, 138, 0.42);
}

.footer-map {
  margin-top: 16px;
  width: 100%;
  height: 138px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  background: #111;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05) brightness(0.86);
}

.footer-map-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold2);
  font-weight: 850;
  font-size: 0.92rem;
  transition: transform 0.28s ease, color 0.28s ease;
}

.footer-map-link:hover {
  transform: translateX(5px);
  color: #fff;
}

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

  .footer-map {
    height: 190px;
  }
}
.about-main-photo {
  height: 620px;
  border-radius: 34px;
}

.about-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  max-width: 330px;
}
.about-main-photo {
  height: 420px;
}

.about-badge {
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: none;
  padding: 14px 16px;
}

.about-badge b {
  font-size: 1.25rem;
}

.about-badge span {
  font-size: 0.86rem;
  line-height: 1.35;
}
.gallery-page-section {
  padding-top: 90px;
}

.gallery-category {
  padding: 56px 0 76px;
  border-bottom: 1px solid rgba(20, 17, 13, 0.12);
}

.gallery-category:first-child {
  padding-top: 0;
}

.gallery-category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.category-head {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.category-head h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.category-head p {
  margin: 0 0 8px;
  color: #5f554b;
  font-size: 1.05rem;
}

.category-masonry {
  columns: 3 280px;
}

.category-masonry .gallery-item {
  box-shadow: 0 18px 42px rgba(55, 36, 17, 0.13);
}

.category-masonry .gallery-item:nth-child(3n + 1) img {
  min-height: 360px;
  object-fit: cover;
}

.category-masonry .gallery-item:nth-child(3n + 2) img {
  min-height: 260px;
  object-fit: cover;
}

.category-masonry .gallery-item:nth-child(3n + 3) img {
  min-height: 310px;
  object-fit: cover;
}

.gallery-category .eyebrow {
  color: #9a742e;
}

@media (max-width: 900px) {
  .category-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-category {
    padding: 42px 0 56px;
  }

  .category-masonry {
    columns: 1;
  }

  .category-masonry .gallery-item img,
  .category-masonry .gallery-item:nth-child(3n + 1) img,
  .category-masonry .gallery-item:nth-child(3n + 2) img,
  .category-masonry .gallery-item:nth-child(3n + 3) img {
    min-height: auto;
  }
}
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.48);
  animation: whatsappPulse 2.3s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.float-wa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float-wa:hover {
  transform: translateY(-5px) scale(1.06);
}

@media (max-width: 900px) {
  .float-wa {
    position: fixed !important;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    z-index: 99999;
  }
}


/* === Production gallery alignment + Villa Grandis location polish === */
.home-gallery-grid,
.category-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  columns: unset;
  column-gap: unset;
}

.home-gallery-grid .gallery-item,
.category-masonry .gallery-item {
  margin: 0;
  aspect-ratio: 4 / 5;
  min-width: 0;
}

.home-gallery-grid .gallery-item img,
.category-masonry .gallery-item img,
.category-masonry .gallery-item:nth-child(3n + 1) img,
.category-masonry .gallery-item:nth-child(3n + 2) img,
.category-masonry .gallery-item:nth-child(3n + 3) img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.footer-location-label {
  margin-top: 12px;
  color: #f4ecdf;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.footer-location-label::before {
  content: "⌖";
  color: var(--gold2);
  margin-right: 8px;
}

@media (max-width: 900px) {
  .home-gallery-grid,
  .category-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .home-gallery-grid,
  .category-masonry {
    grid-template-columns: 1fr;
  }

  .home-gallery-grid .gallery-item,
  .category-masonry .gallery-item {
    aspect-ratio: 4 / 4.7;
  }
}
