/* ============================================================
   RONAZIO BEACH VIEW RESIDENCY — ULTRA PREMIUM CSS v2.0
   Royal · Immersive · Cinematic · Full Animation Suite
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@200;300;400;500;600&family=Great+Vibes&display=swap');

/* ────────────────────────────────────────────────────────────
   DESIGN TOKENS
   ──────────────────────────────────────────────────────────── */
:root {
  --navy:        #06111F;
  --navy-mid:    #0A1A2E;
  --navy-light:  #0E2440;
  --gold:        #C9A84C;
  --gold-light:  #E8CB7A;
  --gold-dim:    rgba(201,168,76,0.18);
  --gold-glow:   rgba(201,168,76,0.4);
  --cream:       #F0EAD6;
  --white:       #FAFAFA;
  --muted:       rgba(240,234,214,0.55);
  --glass:       rgba(6,17,31,0.72);
  --border-gold: 1px solid rgba(201,168,76,0.25);
  --ease-royal:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ────────────────────────────────────────────────────────────
   GLOBAL RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  overflow: hidden;
  cursor: none;
}

body.loaded { overflow-x: hidden; overflow-y: auto; }

/* ────────────────────────────────────────────────────────────
   CUSTOM CURSOR
   ──────────────────────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.12s var(--ease-royal), width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.7;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold-light);
  opacity: 1;
}

/* ────────────────────────────────────────────────────────────
   NOISE TEXTURE OVERLAY
   ──────────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 99997;
  animation: grain-shift 0.5s steps(1) infinite;
}
@keyframes grain-shift {
  0%,100%{ transform: translate(0,0); }
  20%    { transform: translate(-2%,-3%); }
  40%    { transform: translate(3%,1%); }
  60%    { transform: translate(-1%,4%); }
  80%    { transform: translate(2%,-2%); }
}

/* ────────────────────────────────────────────────────────────
   LOADER — CINEMATIC CURTAIN
   ──────────────────────────────────────────────────────────── */
#loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Animated gold particles behind loader */
#loader-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 70% 30%, rgba(201,168,76,0.04) 0%, transparent 70%);
  animation: loader-pulse 4s ease-in-out infinite alternate;
}
@keyframes loader-pulse {
  0%   { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.1); }
}

/* Left + Right curtain panels */
.loader-curtain-left,
.loader-curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--navy-mid);
  z-index: 2;
  transition: transform 1.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.loader-curtain-left  { left: 0; transform: translateX(0); }
.loader-curtain-right { right: 0; transform: translateX(0); }

.loader-hidden .loader-curtain-left  { transform: translateX(-100%); }
.loader-hidden .loader-curtain-right { transform: translateX(100%); }

.loader-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.loader-hidden .loader-content { opacity: 0; }

/* Outer decorative ring */
.loader-ring-outer {
  position: absolute;
  width: 300px; height: 300px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  animation: spin-slow 12s linear infinite;
}
.loader-ring-inner {
  position: absolute;
  width: 220px; height: 220px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  animation: spin-slow 8s linear infinite reverse;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Corner ornaments on loader */
.loader-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.loader-corner-tl { top: 30px; left: 30px; border-width: 1px 0 0 1px; }
.loader-corner-tr { top: 30px; right: 30px; border-width: 1px 1px 0 0; }
.loader-corner-bl { bottom: 30px; left: 30px; border-width: 0 0 1px 1px; }
.loader-corner-br { bottom: 30px; right: 30px; border-width: 0 1px 1px 0; }

.royal-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  letter-spacing: 18px;
  color: var(--gold);
  font-weight: 700;
  animation: cinzel-reveal 2s var(--ease-royal) both;
  text-shadow: 0 0 60px rgba(201,168,76,0.3);
}
@keyframes cinzel-reveal {
  0%   { letter-spacing: -0.2em; opacity: 0; filter: blur(12px); }
  60%  { filter: blur(0); }
  100% { letter-spacing: 18px; opacity: 1; }
}

.divider-gold {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: expand-line 1.4s 1.4s var(--ease-royal) forwards;
}
@keyframes expand-line { to { width: 320px; } }

.royal-subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--cream);
  opacity: 0;
  animation: fade-rise 1.2s 2s forwards;
}
@keyframes fade-rise { to { opacity: 1; transform: translateY(0); } }
.royal-subtitle { transform: translateY(10px); }

/* Loading bar */
.loader-bar-track {
  width: 200px; height: 1px;
  background: rgba(201,168,76,0.12);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fade-rise 0.4s 2.5s forwards;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  animation: load-fill 3.2s 2.8s var(--ease-royal) forwards;
}
@keyframes load-fill { to { width: 100%; } }

.loader-tagline {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-rise 0.8s 3s forwards;
}

#loader-wrapper.loader-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 1.2s;
}

/* ────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────── */
.royal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-royal);
  border-bottom: 1px solid transparent;
}

.royal-nav.scrolled {
  background: rgba(6,17,31,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 12px 60px;
}

/* Animated gold line at nav bottom */
.royal-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.6s var(--ease-royal);
}
.royal-nav.scrolled::after { width: 70%; }

.logo-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.brand-main {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: 4px;
  font-weight: 600;
  transition: text-shadow 0.3s;
}
.brand-main:hover { text-shadow: 0 0 30px var(--gold-glow); }

.brand-sub {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 36px;
  margin: 0;
}

.nav-links a {
  color: rgba(240,234,214,0.75);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-royal);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-gold-nav {
  border: 1px solid var(--gold) !important;
  padding: 8px 20px !important;
  color: var(--gold) !important;
  font-size: 0.6rem !important;
  letter-spacing: 2px !important;
  border-radius: 50px;
  transition: background 0.4s, color 0.4s, box-shadow 0.4s !important;
}
.btn-gold-nav:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  box-shadow: 0 0 30px var(--gold-glow);
}

/* ────────────────────────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────────────────────────── */
.royal-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.2);
  transform: scale(1.06);
  animation: video-zoom 25s ease-in-out infinite alternate;
}
@keyframes video-zoom {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.14); }
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6,17,31,0.95) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(6,17,31,0.6) 100%);
  z-index: 1;
}

/* Animated vignette scan line */
.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
}

.hero-text-area {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 70px;
  text-align: center;
}

/* 3D cinematic entrance */
.entrance-wrapper {
  opacity: 0;
  transform: translateY(60px) scale(0.94);
  transition: opacity 1.8s var(--ease-royal), transform 1.8s var(--ease-royal);
}
body.loaded .entrance-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1.2s ease 0.8s;
  display: block;
  margin-bottom: 16px;
}
body.loaded .reveal-text { opacity: 1; }

.main-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  letter-spacing: 12px;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--cream);
  font-weight: 700;
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
}

/* Shimmer sweep on heading */
.main-heading::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.15) 50%,
    transparent 80%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer-sweep 4s ease-in-out 3s infinite;
}
@keyframes shimmer-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.location-container { margin: 16px 0 0; }
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 8px;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
}
.location-tag::before,
.location-tag::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── HERO BUTTONS ── */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.btn-reserve {
  position: relative;
  background: transparent;
  color: var(--navy) !important;
  padding: 0 44px;
  height: 52px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s var(--ease-royal);
  box-shadow: 0 0 0 1px var(--gold);
}
.btn-reserve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 60px;
  transition: transform 0.5s var(--ease-royal);
}
.btn-reserve span { position: relative; z-index: 1; }
.btn-reserve:hover {
  box-shadow: 0 0 40px var(--gold-glow), 0 0 0 1px var(--gold-light);
  transform: translateY(-3px);
  color: var(--navy) !important;
}
.btn-reserve:hover::before { background: var(--gold-light); }

.btn-story {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  transition: color 0.4s;
}
.btn-story::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 20px;
  width: calc(100% - 40px); height: 1px;
  background: rgba(240,234,214,0.4);
  transition: background 0.4s;
}
.btn-story:hover { color: var(--gold); }
.btn-story:hover::after { background: var(--gold); }

/* ── STATS ── */
.hero-stats-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
  padding-bottom: 8px;
}

.stats-row {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-top: 24px;
  margin: 0 8%;
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded .stat-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 1.2s; }
body.loaded .stat-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
body.loaded .stat-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 1.6s; }
body.loaded .stat-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 1.8s; }

.stat-item h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 600;
}

.stat-item p {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-down-btn {
  display: block;
  width: 30px;
  margin: 16px auto 0;
  opacity: 0.5;
  animation: scroll-pulse 2.5s ease-in-out infinite;
}
.arrow-icon {
  display: block;
  width: 20px; height: 20px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg) translateX(-4px);
  margin: auto;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; transform: translateY(0); }
  50%      { opacity: 0.8; transform: translateY(6px); }
}

/* ────────────────────────────────────────────────────────────
   SECTION LABELS (shared utility)
   ──────────────────────────────────────────────────────────── */
.ronazio-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 7px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
  position: relative;
}

.ronazio-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 28px;
}
.ronazio-title span { color: var(--gold); }

/* ────────────────────────────────────────────────────────────
   ABOUT SECTION
   ──────────────────────────────────────────────────────────── */
.ronazio-custom-about {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  padding: 160px 0 130px;
  overflow: hidden;
}

/* Diagonal light beam */
.ronazio-custom-about::before {
  content: '';
  position: absolute;
  top: -100px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 65%);
  transform: rotate(-30deg);
  pointer-events: none;
}

/* Ocean waves */
.ronazio-ocean-wrapper {
  position: absolute;
  top: -80px; left: 0;
  width: 100%; height: 140px;
  overflow: hidden;
}

.ronazio-wave-layer {
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg') repeat-x;
  position: absolute;
  width: 6400px;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.ronazio-wave-back  { top:0;    opacity: 0.07; animation: wave-drift 14s linear infinite; filter: hue-rotate(180deg) invert(1); }
.ronazio-wave-mid   { top:20px; opacity: 0.12; animation: wave-drift 20s linear infinite reverse; filter: hue-rotate(180deg) invert(1); }
.ronazio-wave-front { top:40px; opacity: 0.22; animation: wave-drift 28s linear infinite; filter: hue-rotate(180deg) invert(1); }

@keyframes wave-drift { to { transform: translateX(-1600px); } }

/* Pearl ornaments */
.ronazio-pearl {
  position: absolute;
  pointer-events: none;
}
.ronazio-pearl-top-right  { top: 12%; right: 5%; }
.ronazio-pearl-bottom-left { bottom: 10%; left: 5%; }

.ronazio-pearl-shell {
  width: 80px; height: 80px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pearl-float 6s ease-in-out infinite;
}
@keyframes pearl-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(5deg); }
}

.ronazio-pearl-gem {
  width: 28px; height: 28px;
  background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.6), rgba(201,168,76,0.1));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

/* Image stack */
.ronazio-visual-stack {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
}

.ronazio-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
  transition: transform 0.8s var(--ease-royal), box-shadow 0.8s var(--ease-royal);
}
.ronazio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s var(--ease-royal);
}
.ronazio-card:hover img { transform: scale(1.04); }

.ronazio-card-main {
  width: 78%; z-index: 2;
  top: 0; left: 0;
  height: 380px;
}
.ronazio-card-sub {
  width: 60%; z-index: 3;
  bottom: 0; right: 0;
  height: 240px;
  border: 5px solid var(--navy-mid);
}
.ronazio-card-main:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 60px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.2); }
.ronazio-card-sub:hover  { transform: translateY(-6px) rotate(0.5deg);  box-shadow: 0 40px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2); }

/* Gold badge on image */
.ronazio-card-main::after {
  content: 'ECR ROAD';
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(6,17,31,0.85);
  color: var(--gold);
  font-size: 0.55rem;
  letter-spacing: 4px;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

/* Text content */
.ronazio-paragraph {
  color: rgba(240,234,214,0.7);
  line-height: 2;
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 300;
}

.ronazio-perks { display: flex; flex-direction: column; gap: 14px; }

.ronazio-perk-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ronazio-perk-item.revealed {
  opacity: 1;
  transform: translateX(0);
}
.ronazio-perk-item:nth-child(1) { transition-delay: 0s; }
.ronazio-perk-item:nth-child(2) { transition-delay: 0.15s; }
.ronazio-perk-item:nth-child(3) { transition-delay: 0.3s; }

.ronazio-gold-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-glow);
}

.ronazio-perk-item p {
  margin: 0;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ────────────────────────────────────────────────────────────
   ROOMS SECTION
   ──────────────────────────────────────────────────────────── */
.ronazio-rooms-unique {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Faint grid pattern */
.ronazio-rooms-unique::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.room-unique-card {
  background: var(--navy-mid);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.6s var(--ease-royal), box-shadow 0.6s var(--ease-royal), border-color 0.4s;
  position: relative;
}
.room-unique-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 50px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
  border-color: rgba(201,168,76,0.3);
}

/* Gold shimmer on hover */
.room-unique-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.06), transparent);
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}
.room-unique-card:hover::before { left: 160%; }

.room-unique-slider,
.modal-image-slider-area {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.room-unique-slides,
.modal-slides-box {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide-cycle 9s ease-in-out infinite;
}

.room-unique-slides img,
.modal-slides-box img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s;
}
.room-unique-card:hover .room-unique-slides img { filter: brightness(1.05) saturate(1.1); }

@keyframes slide-cycle {
  0%,28%   { transform: translateX(0); }
  33%,61%  { transform: translateX(-33.333%); }
  66%,94%  { transform: translateX(-66.666%); }
  100%     { transform: translateX(0); }
}

/* Gradient overlay on image */
.room-unique-slider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(0deg, var(--navy-mid), transparent);
  z-index: 2;
  pointer-events: none;
}

.room-unique-info {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 2;
}

.room-unique-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.room-unique-info p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── BOOK NOW BUTTON ── */
.btn-royal-trigger {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.5s var(--ease-royal);
  font-family: 'Montserrat', sans-serif;
}
.btn-royal-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-royal);
  z-index: -1;
}
.btn-royal-trigger:hover {
  color: var(--navy) !important;
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-royal-trigger:hover::before { transform: scaleX(1); }

/* ────────────────────────────────────────────────────────────
   SPLASH CLICK EFFECT
   ──────────────────────────────────────────────────────────── */
.splash-trigger { position: relative; overflow: hidden; cursor: pointer; }
.splash-trigger::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.splash-trigger:active::after {
  animation: splash-burst 0.7s ease-out forwards;
}
@keyframes splash-burst {
  to { width: 500px; height: 500px; opacity: 0; }
}

/* ────────────────────────────────────────────────────────────
   WAVE MODAL
   ──────────────────────────────────────────────────────────── */
.modal-unique-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
}

.wave-wrap-element {
  position: absolute;
  inset: 0;
  background: rgba(6,17,31,0.96);
  backdrop-filter: blur(8px);
  clip-path: circle(0% at 50% 50%);
  transition: 1.0s cubic-bezier(0.85, 0, 0.15, 1);
}
.modal-unique-overlay.active .wave-wrap-element {
  clip-path: circle(150% at 50% 50%);
}

.modal-unique-card {
  position: relative;
  width: 95%;
  max-width: 1100px;
  background: var(--navy-mid);
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.85) translateY(60px);
  transition: 0.8s var(--ease-snap);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.08);
}
.modal-unique-overlay.active .modal-unique-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── CLOSE ICON ── */
.rich-close-wrapper {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 3100;
  cursor: pointer;
}
.gold-glow-circle {
  width: 54px; height: 54px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s var(--ease-royal);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.gold-glow-circle span {
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
  font-weight: 200;
  transition: transform 0.4s var(--ease-snap);
}
.rich-close-wrapper:hover .gold-glow-circle {
  background: var(--gold);
  box-shadow: 0 0 40px var(--gold-glow);
}
.rich-close-wrapper:hover .gold-glow-circle span {
  color: var(--navy);
  transform: rotate(90deg);
}

/* ── MODAL IMAGE AREA ── */
.modal-image-slider-area {
  height: 100%;
  min-height: 400px;
  position: relative;
}
.modal-slides-box { animation: slide-cycle 9s ease-in-out infinite; }

.modal-text-layer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(6,17,31,0.95) 0%, transparent 100%);
}
.modal-text-layer h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.modal-text-layer p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* ── MODAL FORM ── */
.modal-form-container {
  padding: 44px 40px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
}
.form-header h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}
.gold-divider {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.input-group-royal { margin-bottom: 12px; }
.input-group-royal label {
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.input-group-royal input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 11px 14px;
  color: var(--cream);
  border-radius: 10px;
  font-size: 0.88rem;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.input-group-royal input:focus {
  outline: none;
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}

.btn-confirm-unique {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 16px;
  cursor: pointer;
  transition: all 0.4s var(--ease-royal);
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}
.btn-confirm-unique:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.4);
}

/* ────────────────────────────────────────────────────────────
   GALLERY SECTION
   ──────────────────────────────────────────────────────────── */
.ronazio-gallery-section {
  background: var(--navy-mid);
  padding: 120px 0;
  position: relative;
}

/* Ambient gold glow */
.ronazio-gallery-section::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  pointer-events: none;
}

.gallery-item {
  perspective: 1000px;
  height: 240px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.revealed { opacity: 1; transform: translateY(0); }

.gallery-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.75s var(--ease-royal);
  transform-style: preserve-3d;
}
.gallery-item:hover .gallery-card-inner { transform: rotateY(180deg); }

.gallery-front, .gallery-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow 0.5s;
}
.gallery-item:hover .gallery-front { box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

.gallery-front img, .gallery-back img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-royal);
}
.gallery-item:hover .gallery-front img { transform: scale(1.06); }

.gallery-back {
  transform: rotateY(180deg);
  filter: brightness(1.1) saturate(1.2);
}
.gallery-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
}

/* ── GALLERY MODAL ── */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,17,31,0.85);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 3200;
  cursor: pointer;
  transition: all 0.4s var(--ease-royal);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}
.gallery-nav-btn:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: 28px; }
.next-btn { right: 28px; }

.gallery-modal-content {
  position: relative;
  z-index: 3100;
  max-width: 78%;
  transition: opacity 0.3s ease;
}
.gallery-modal-content img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

/* ────────────────────────────────────────────────────────────
   CONTACT SECTION
   ──────────────────────────────────────────────────────────── */
.ronazio-contact-minimal {
  background: var(--navy);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.ronazio-contact-minimal::before {
  content: '';
  position: absolute;
  top: 50%; left: -300px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-desc {
  color: rgba(240,234,214,0.6);
  font-size: 1rem;
  line-height: 1.9;
  margin: 24px 0 44px;
  max-width: 440px;
  font-weight: 300;
}

.contact-info-list { display: flex; flex-direction: column; gap: 24px; }

.c-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: all 0.4s var(--ease-royal);
  cursor: default;
}
.c-info-item:hover {
  transform: translateX(8px);
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
}

.c-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-info-item h5 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.82rem;
  margin: 0 0 3px;
  letter-spacing: 1px;
}
.c-info-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.82rem;
}

/* Glass form */
.ronazio-form-glass {
  background: rgba(14,36,64,0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 52px;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(201,168,76,0.1);
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 14px 0;
  color: var(--cream);
  font-size: 0.95rem;
  transition: border-color 0.4s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
.floating-group input::placeholder,
.floating-group textarea::placeholder { color: rgba(240,234,214,0.3); }
.floating-group input:focus,
.floating-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.floating-group textarea { resize: none; }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.ronazio-footer-slim {
  background: var(--navy-light);
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  position: relative;
}
.ronazio-footer-slim::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-slim-layout {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 50px;
  justify-content: flex-end;
}

.footer-left-side { margin-left: auto; margin-right: 0; z-index: 2; }

.created-inline-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.created-text {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  color: rgba(240,234,214,0.35);
  letter-spacing: 1px;
}

.matrix-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  position: relative;
}
.m-red   { color: #FF2020; font-weight: 700; transition: text-shadow 0.3s; font-family: 'Montserrat',sans-serif; font-size: 0.9rem; }
.b-white { color: #fff; font-weight: 700; transition: text-shadow 0.3s; font-family: 'Montserrat',sans-serif; font-size: 0.9rem; }
.matrix-brand:hover .m-red   { text-shadow: 0 0 20px #FF2020; }
.matrix-brand:hover .b-white { text-shadow: 0 0 20px #fff; }

.matrix-logo-circle-zoom {
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.matrix-logo-circle-zoom img { width: 100%; height: 100%; object-fit: cover; }

#glitter-container { position: absolute; inset: 0; pointer-events: none; }
.star-dust {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  animation: dust-fly 1s ease-out forwards;
}
@keyframes dust-fly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--x),var(--y)) scale(0); opacity: 0; }
}

/* ────────────────────────────────────────────────────────────
   SECTION REVEAL ANIMATION (JS-triggered)
   ──────────────────────────────────────────────────────────── */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-royal), transform 0.9s var(--ease-royal);
}
.section-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Horizontal reveal variant */
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease-royal), transform 0.9s var(--ease-royal); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.9s var(--ease-royal), transform 0.9s var(--ease-royal); }
.reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .royal-nav { padding: 14px 30px; }
  .royal-nav.scrolled { padding: 10px 30px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 768px) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }

  .royal-nav {
    flex-direction: column;
    padding: 10px 16px;
    gap: 10px;
    background: rgba(6,17,31,0.95);
    backdrop-filter: blur(20px);
  }
  .nav-links { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 1.5px; }
  .brand-main { font-size: 1.3rem; letter-spacing: 3px; }

  .hero-text-area { padding-top: 130px; }
  .main-heading { font-size: clamp(2rem, 10vw, 3.2rem); letter-spacing: 5px; }
  .reveal-text { font-size: 0.8rem; letter-spacing: 5px; }
  .location-tag { letter-spacing: 4px; font-size: 0.62rem; }

  .hero-btns { flex-direction: column; align-items: center; gap: 16px; }
  .btn-reserve { width: 82%; justify-content: center; }
  .btn-story   { justify-content: center; }

  .hero-stats-container { position: relative; bottom: auto; margin-top: 30px; background: rgba(6,17,31,0.5); padding: 20px 0; }
  .stats-row { margin: 0 5%; }

  .ronazio-custom-about { padding: 90px 20px 70px; text-align: center; }
  .ronazio-ocean-wrapper { height: 70px; top: -65px; }
  .ronazio-visual-stack  { height: 360px; margin-bottom: 60px; }
  .ronazio-card-main { width: 88%; height: 280px; }
  .ronazio-card-sub  { width: 65%; height: 180px; bottom: 0; }
  .ronazio-text-payload { display: flex; flex-direction: column; align-items: center; }
  .ronazio-paragraph { font-size: 0.92rem; text-align: center; }
  .ronazio-perks { align-items: flex-start; display: inline-flex; }

  .ronazio-rooms-unique { padding: 80px 0; }

  .ronazio-gallery-section { padding: 80px 0; }
  .gallery-item { height: 190px; }
  .gallery-nav-btn { width: 42px; height: 42px; font-size: 16px; }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
  .gallery-modal-content { max-width: 94%; }

  .ronazio-contact-minimal { padding: 80px 20px; text-align: center; }
  .contact-desc { margin: 20px auto 40px; }
  .c-info-item { flex-direction: column; text-align: center; gap: 10px; }
  .ronazio-form-glass { padding: 32px 20px; border-radius: 20px; }

  .footer-slim-layout { flex-direction: column; gap: 14px; justify-content: center; }
  .footer-center { position: static; transform: none; }
  .footer-left-side { margin: 0; }

  .loader-ring-outer { width: 220px; height: 220px; }
  .loader-ring-inner { width: 160px; height: 160px; }
  .loader-corner { width: 28px; height: 28px; }
  .loader-corner-tl { top: 18px; left: 18px; }
  .loader-corner-tr { top: 18px; right: 18px; }
  .loader-corner-bl { bottom: 18px; left: 18px; }
  .loader-corner-br { bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .main-heading { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .modal-unique-card { border-radius: 18px; }
  .modal-form-container { padding: 20px 16px; }
  .modal-image-slider-area { min-height: 220px; }
}

@media (max-width: 992px) {
  .modal-unique-card { max-height: 90vh; overflow-y: auto; }
  .modal-image-slider-area { height: 240px; min-height: 240px; }
}
