﻿/* Import Google Fonts - Cinzel mirrors the sharp, high-end serif of the Ascend logo */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F9F7F4; /* Warm off-white inspired by building trim */
  color: #2C3E50; /* Deep Navy Slate from the exterior siding */
  line-height: 1.6;
  font-weight: 400;
}

/* Headings – Using Cinzel to replicate the Ascend Collection Logo Style */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
 
  font-weight: 600;
  text-transform: uppercase; /* Logo is all-caps; this maintains brand consistency */
  letter-spacing: 2px; /* Increased tracking for that luxury hotel feel */
}

/* -----------------------------------------------------------
   THE MONOLITH HEADER - ARCHITECTURAL PRECISION
   ----------------------------------------------------------- */

.monolith-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 20px;
}

.arch-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* TOP BAR - PRECISION METADATA */
.precision-bar {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.precision-bar .arch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-data {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #BE8C50; /* Timber Gold */
}

.location-data .sep {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 15px;
  vertical-align: middle;
}

.location-data .status { color: #FFF; opacity: 0.6; }

.utility-actions a {
  color: #FFF;
  text-decoration: none;
  font-size: 13px;
  margin-left: 10px;
  letter-spacing: 1px;
}

.social-dot {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px !important;
  transition: 0.3s;
}

.social-dot:hover { background: #BE8C50; border-color: #BE8C50; }

/* MAIN MONOLITH - THE STRUCTURE */
.main-monolith {
  padding-top: 25px;
}

.monolith-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 40px;
  height: 100px;
  position: relative;
}

/* Links Style */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.left .nav-links { justify-content: flex-end; padding-right: 40px; }
.right .nav-links { justify-content: flex-start; padding-left: 40px; }

.nav-links a {
  font-family: 'Cinzel', serif;
  color: #FFF;
  text-decoration: none;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.4s;
  opacity: 0.9;
}

.nav-links a:hover { color: #BE8C50; opacity: 1; }

/* LOGO SHIELD - THE CENTERPIECE */
.mono-center {
  position: relative;
  width: 180px;
  height: 140px; /* Extends above and below the main bar */
  background: #2C3E50; /* Dark Slate Siding Color */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 10;
}

.logo-shield img {
  width: 120px; /* Fixed - Never Stretches */
  filter: brightness(0) invert(1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shield-outline {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid #BE8C50;
  opacity: 0.3;
  pointer-events: none;
}

.mono-center:hover img {
  transform: scale(1.08);
}

/* CTA BUTTON */
.mono-section.right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-gold-arch {
  background: #BE8C50;
  color: #FFF;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  padding: 12px 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s;
  border: 1px solid #BE8C50;
}

.btn-gold-arch:hover {
  background: transparent;
  color: #BE8C50;
}

/* STICKY BEHAVIOR */
.monolith-header.sticky .monolith-wrapper {
  background: #1A252F;
  height: 70px;
}

.monolith-header.sticky .mono-center {
  height: 90px;
}
/* --- Entrance Animations --- */

@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shieldScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes outlineDraw {
  0% { width: 0; height: 0; opacity: 0; }
  50% { width: 100%; height: 0; opacity: 1; }
  100% { width: calc(100% + 10px); height: calc(100% + 10px); opacity: 0.4; }
}

/* Applying Animations to Classes */
.reveal-top {
  animation: slideDownFade 0.8s ease forwards;
}

.reveal-bottom {
  animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.reveal-center {
  animation: shieldScale 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.shield-outline {
  animation: outlineDraw 1.5s ease forwards;
  animation-delay: 1s;
}

/* --- Icon & Utility Refinements --- */

.phone-link i {
  font-size: 10px;
  margin-right: 5px;
  color: #BE8C50;
}

.social-dot {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px !important; /* Proper icon sizing */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
}

.social-dot:hover {
  background: #BE8C50;
  border-color: #BE8C50;
  transform: translateY(-3px) rotate(8deg);
  color: #FFF !important;
}

/* --- Smooth Interaction Enhancements --- */

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #BE8C50;
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-gold-arch {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold-arch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 100%;
  height: 100%;
  background: #FFF;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-gold-arch:hover {
  color: #1A252F !important;
}

.btn-gold-arch:hover::before {
  left: 0;
}
/* --- 1. The Monolith Wrapper (Stable & Smooth) --- */
.monolith-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 100px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
  overflow: clip; 
  overflow-clip-margin: 50px;
  /* Prevent flickering by giving the browser a heads-up */
  will-change: transform, opacity;
}

/* --- 2. Grid & Glow (Now Fixed to Parent) --- */
.monolith-wrapper::before,
.monolith-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* CRITICAL: This prevents the mouse from 'hitting' the grid and blinking */
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* THE GRID - Forced to back */
.monolith-wrapper::before {
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(190, 140, 80, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 140, 80, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -2;
}

/* THE MOUSE GLOW - Stays below links */
.monolith-wrapper::after {
  top: var(--y, 0);
  left: var(--x, 0);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(190, 140, 80, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Trigger both when hovering the wrapper OR the links inside */
.monolith-wrapper:hover::before,
.monolith-wrapper:hover::after {
  opacity: 1;
}



/* --- 4. Logo Shield (Locked) --- */
.mono-center {
  height: 140px !important;
  width: 180px;
  z-index: 10;
  background: #2C3E50;
  position: relative;
  /* Prevent the center from triggering its own hover state shifts */
  pointer-events: auto;
}


/* --- Desktop: Hide Mobile Elements --- */
.mobile-toggle, .mobile-monolith-overlay {
  display: none;
}

/* --- Tablet & Mobile Only Styles --- */
@media (max-width: 1024px) {
  /* 1. Remove Topbar on Mobile/iPad */
  .precision-bar {
    display: none !important;
  }

  /* 2. Realign Header */
  .monolith-header {
    padding-top: 15px;
  }

  .monolith-wrapper {
    height: 85px;
    grid-template-columns: 1fr;
    justify-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Hide Desktop Links */
  .mono-section.left, .mono-section.right {
    display: none;
  }

  /* 3. Show Hamburger */
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 3000;
  }

  .menu-text {
    font-family: 'Cinzel', serif;
    color: #BE8C50;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .ham-box {
    width: 24px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ham-box .bar {
    width: 100%;
    height: 1px;
    background: #BE8C50;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  /* 4. The Overlay (Blueprint Expansion) */
  .mobile-monolith-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: #1A252F; /* Deep Slate Background */
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1); /* Starts slightly zoomed out */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-items: center;
    justify-content: center;
  }

  .mobile-monolith-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  /* Background Grid Effect */
  .menu-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(190, 140, 80, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(190, 140, 80, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
  }

  /* Navigation Links */
  .m-nav ul { list-style: none; text-align: center; padding: 0; }
  .m-nav li { margin: 30px 0; }
  
  .m-nav a {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
  }

  .m-nav a:hover { color: #BE8C50; }

  /* Metadata & Footer */
  .menu-header { text-align: center; margin-bottom: 40px; }
  .m-coord { color: #BE8C50; font-size: 10px; letter-spacing: 3px; }
  .m-addr { color: #FFF; opacity: 0.5; font-size: 11px; margin-top: 10px; }

  .menu-footer { text-align: center; margin-top: 40px; }
  .m-call { color: #FFF; text-decoration: none; display: block; margin-bottom: 25px; letter-spacing: 2px; }
  .m-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
  .m-social i { color: #BE8C50; font-size: 18px; }

  /* Hamburger Active State (Transform to X) */
  .mobile-toggle.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-toggle.active .bar:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }
}
/* --- Tablet & Mobile Only Styles --- */
@media (max-width: 1024px) {
  /* 1. Remove Topbar completely */
  .precision-bar {
    display: none !important;
  }

  /* 2. Re-stabilize the Monolith Wrapper */
  .monolith-header {
    padding-top: 10px;
    width: 100%;
  }

  .monolith-wrapper {
    display: flex; /* Switched from grid for better mobile centering */
    justify-content: center; /* Forces Logo Shield to absolute center */
    align-items: center;
    height: 80px;
    padding: 0 20px;
    background: rgba(26, 37, 47, 0.95); /* Slightly more solid for mobile legibility */
    border-bottom: 1px solid rgba(190, 140, 80, 0.2);
    position: relative;
    overflow: visible; /* Allows the shield to hang */
  }

  /* Force the logo container to be the center of attention */
  .mono-center {
    width: 140px !important; /* Scaled down slightly for 393px screens */
    height: 110px !important; /* Proportional scale */
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }

  .logo-shield img {
    width: 90px !important; /* Scaled logo for mobile */
  }

  /* Hide Desktop Links */
  .mono-section.left, .mono-section.right {
    display: none;
  }

  /* 3. The Hamburger - Fixed to the Right */
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 8px;
    z-index: 3000;
  }

  .menu-text {
    font-family: 'Cinzel', serif;
    color: #BE8C50;
    font-size: 9px; /* Smaller for narrow screens */
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* 4. The Overlay (Blueprint Expansion) - Fixed for 393x852 */
  .mobile-monolith-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #1A252F;
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); /* Subtle slide down instead of scale */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-direction: column;
    padding: 20px;
  }

  .mobile-monolith-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Adjust Link Sizes for 393px height */
  .m-nav li {
    margin: 20px 0;
  }

  .m-nav a {
    font-size: 22px; /* Slightly smaller to ensure no overlap */
    letter-spacing: 3px;
  }

  /* Ensure the footer doesn't get cut off on short phones */
  .menu-footer {
    margin-top: auto;
    padding-bottom: 40px;
  }
}

/* Specific fix for very small phones (under 400px) */
@media (max-width: 400px) {
 
  
  .mono-center {
    width: 120px !important;
    height: 100px !important;
  }
}
/* --- Bilateral Convergence Sticky --- */
.monolith-header {
    position: absolute; /* Default */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: transform 0.4s ease;
}

/* Create the two sliding halves */
.monolith-header::before,
.monolith-header::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #1A252F; /* Deep Slate */
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1; /* Behind the content */
    border-bottom: 2px solid #BE8C50; /* The Golden Edge */
    pointer-events: none;
    opacity: 0;
}

/* Left Half starts off-screen left */
.monolith-header::before {
    left: 0;
    transform: translateX(-100%);
}

/* Right Half starts off-screen right */
.monolith-header::after {
    right: 0;
    transform: translateX(100%);
}

/* --- THE STICKY ACTIVE STATE --- */
.monolith-header.sticky-active {
    position: fixed;
    top: 0;
    /* When active, halves slide to center */
}

.monolith-header.sticky-active::before,
.monolith-header.sticky-active::after {
    transform: translateX(0);
    opacity: 1;
}

/* Hide Top Bar and Shrink Header Height when Sticky */
.monolith-header.sticky-active .precision-bar {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.monolith-header.sticky-active .monolith-wrapper {
    height: 75px; /* Thinner for sticky */
    border: none; /* Let the sliding halves provide the border */
    background: transparent; /* Wrapper is clear, panels are visible */
}

/* Scaling the logo slightly to make the "Lock" feel tighter */
.monolith-header.sticky-active .mono-center {
    transform: scale(0.85);
    transition: transform 0.5s ease;
}

/* --- HIDDEN STATE (Scrolling Down) --- */
.monolith-header.sticky-hidden {
    transform: translateY(-100%); /* Moves the whole bar up */
}
/* --- Ghost Monolith Sticky Logic --- */
.monolith-header {
  /* Default state */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
              background 0.4s ease, 
              padding 0.4s ease;
}

/* The "Hidden" State (When scrolling down) */
.monolith-header.sticky-hidden {
  transform: translateY(-100%);
}

/* The "Active Sticky" State (When scrolling up) */
.monolith-header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  padding-top: 0; /* Remove top spacing when sticky */
  z-index: 2000;
}

/* Unique Sticky Design - The "Antique Slab" Look */
.monolith-header.sticky-active .monolith-wrapper {
  background: #1A252F; /* Solid Antique Slate */
  height: 70px; /* Slimmer profile */
  border-bottom: 2px solid #BE8C50; /* Golden Etched Border */
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

/* Shrink the Shield when Sticky */
.monolith-header.sticky-active .mono-center {
  height: 90px !important;
  width: 130px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.monolith-header.sticky-active .logo-shield img {
  width: 80px !important;
}

/* Hide Top Bar in sticky mode to keep it clean */
.monolith-header.sticky-active .precision-bar {
  display: none;
}

/* --- 1. CORE LAYOUT & MONOLITH --- */
.hero-monolith {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #1A252F;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

/* --- 2. CINEMATIC CANVAS & SLIDER --- */
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider, .hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    will-change: transform;
}

/* Ken Burns Zoom Effect */
.hero-slide.active .hero-image {
    animation: kenBurns 10s linear forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.1); }
    to { transform: scale(1.25); }
}

/* --- 3. THE "DARK WASH" LEGIBILITY MASKS --- */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    /* Combined Radial and Linear Gradients for maximum text protection */
    background: 
        linear-gradient(to top, rgba(26, 37, 47, 0.08) 0%, transparent 105%),
        linear-gradient(to right, rgba(26, 37, 47, 0.85) 0%, transparent 145%),
        linear-gradient(to left, rgba(26, 37, 47, 0.65) 0%, transparent 45%),
        linear-gradient(to bottom, rgba(26, 37, 47, 0.8) 0%, transparent 25%, transparent 75%, rgba(26, 37, 47, 0.9) 100%);
}



/* --- 4. KINETIC IDENTITY (LEFT SIDE) --- */
.hero-identity-container {
    position: relative;
    flex: 1.2;
    z-index: 10;
    height: 300px; /* Constraints the container for absolute children */
}

.identity-group {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-40%);
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.identity-group.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tag-line { width: 45px; height: 1px; background: #BE8C50; }
.tag-text { font-family: 'Montserrat'; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #BE8C50; }

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(45px, 7vw, 85px);
    line-height: 0.9;
    color: #FFF;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title .accent {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    margin-top: 10px;
}

.hero-description {
    font-family: 'Montserrat';
    font-size: 15px;
    line-height: 1.8;
    color: #FFF;
    opacity: 0.8;
    margin-top: 25px;
    max-width: 450px;
}

/* --- 5. TECHNICAL SPECS (RIGHT SIDE) --- */
.hero-specs {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    text-align: right;
    border-left: 1px solid rgba(190, 140, 80, 0.2);
    padding: 20px 0 20px 60px;
    min-height: 220px;
    justify-content: flex-end;
}

.spec-group {
    position: absolute;
    top: 0; 
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.spec-group.active {
    opacity: 1;
    transform: translateY(0);
}

.spec-label { font-family: 'Montserrat'; font-size: 9px; letter-spacing: 2px; color: #BE8C50; text-transform: uppercase; margin-bottom: 5px; display: block;}
.spec-value { font-family: 'Cinzel'; font-size: 20px; color: #FFF; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

/* --- 6. ACTION BUTTON --- */
.hero-action-block { margin-top: 40px; }
.btn-hero-primary { display: flex; align-items: center; justify-content: flex-end; gap: 20px; text-decoration: none; }
.btn-text { font-family: 'Cinzel'; color: #FFF; letter-spacing: 2px; font-size: 12px; transition: 0.3s; }
.btn-arrow {
    width: 55px; height: 55px;
    border: 1px solid #fff;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: 0.5s;
}

 .btn-arrow:hover { background: #BE8C50; color: #FFF; transform: rotate(90deg); }
.btn-text:hover  { color: #fff; }

/* --- 7. FOUNDATION & STATUS --- */
.hero-foundation {
    position: absolute;
    bottom: 80px;
    left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10%;
    z-index: 15;
}

.slider-status { display: flex; align-items: center; gap: 15px; font-family: 'Cinzel'; color: #BE8C50; font-size: 14px; }
.status-line { width: 80px; height: 1px; background: rgba(190, 140, 80, 0.2); position: relative; }
.status-line .progress { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: #BE8C50; }

.hero-socials { display: flex; gap: 30px; }
.hero-socials a { font-family: 'Montserrat'; font-size: 10px; color: #FFF; text-decoration: none; letter-spacing: 2px; opacity: 0.6; transition: 0.4s; }
.hero-socials a:hover { opacity: 1; color: #BE8C50; }

/* --- 8. RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-monolith { flex-direction: column; justify-content: center; padding-top: 100px; padding-bottom: 100px; height: auto; min-height: 100vh; }
    .hero-identity-container { height: auto; min-height: 350px; flex: none; width: 100%; }
    .identity-group { position: relative; top: 0; transform: none; display: none; }
    .identity-group.active { display: block; transform: none; }
    .hero-specs { border-left: none; border-top: 1px solid rgba(190, 140, 80, 0.2); padding: 40px 0 0 0; margin-top: 50px; text-align: left; width: 100%; min-height: auto; }
    .spec-group { position: relative; display: none; }
    .spec-group.active { display: flex; }
    .btn-hero-primary { justify-content: flex-start; }
    .hero-foundation { position: relative; bottom: 0; margin-top: 50px; padding: 0; }
	
}

/* Force the body to stay contained */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
/* --- UPDATED FOUNDATION (Same Row) --- */
.hero-foundation {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%; /* Increased padding for more breathing room */
    z-index: 15;
}

/* --- CENTER NAVIGATION THUMBS --- */
.hero-nav-thumbs {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Forces true center */
}

.nav-thumb {
    width: 60px;
    height: 40px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    filter: grayscale(100%);
}

.nav-thumb:hover {
    opacity: 0.8;
    filter: grayscale(0%);
    border-color: #BE8C50;
}

.nav-thumb.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: #BE8C50;
    width: 80px; /* Expands active thumb slightly */
}

/* --- RIGHT SIDE ACTIONS --- */
.foundation-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-action-block { margin-top: 0 !important; }

/* --- RESPONSIVE FIX --- */
@media (max-width: 1100px) {
    .hero-nav-thumbs { display: none; } /* Hide thumbs on small screens to avoid crowding */
    .hero-foundation { padding: 0 10%; }
}
/* --- PRELOADER SCROLL LOCK --- */
body.preloader-active {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none; /* Prevents touch scrolling on mobile */
}

/* --- ANTIQUE PRELOADER STYLING --- */
.preloader-overlay {
    position: fixed;
    inset: 0;
    background: #0d1317; /* Deeper slate than original */
    z-index: 99999; /* Elevated z-index to overlay everything cleanly */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Cinematic Letterbox */
.preloader-letterbox {
    position: absolute;
    width: 100%;
    height: 15vh;
    background: #000;
    z-index: 10;
    transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.preloader-letterbox.top { top: 0; }
.preloader-letterbox.bottom { bottom: 0; }

.preloader-center-stack {
    width: 650px;
    height: 400px;
    position: relative;
    padding: 10px;
    border: 1px solid rgba(190, 140, 80, 0.3); /* Subtle Gold Line */
}

/* The Flying Elements */
.flying-img {
    position: absolute;
    inset: 10px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: sepia(0.8) contrast(1.2) brightness(0.8); /* Antique effect */
    transition: all 0.9s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.flying-img.flash {
    opacity: 1;
    filter: sepia(0) contrast(1) brightness(1); /* Reveal true color */
    transform: scale(1);
}

/* Text Stylings */
.preloader-text-block { text-align: center; margin-top: 50px; transition: opacity 0.5s ease; }
.preloader-title {
    font-family: 'Cinzel', serif;
    color: #FFF;
    font-size: 2.5rem;
    letter-spacing: 12px;
    margin-bottom: 5px;
}
.preloader-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #c29b68; /* Updated to brand warm gold */
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Exit Animations */
.hero-monolith.ready .preloader-letterbox.top { transform: translateY(-100%); }
.hero-monolith.ready .preloader-letterbox.bottom { transform: translateY(100%); }
.hero-monolith.ready .preloader-overlay { opacity: 0; pointer-events: none; transition: opacity 1.2s 1s; }
/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 1024px) {
    .hero-monolith { 
        flex-direction: column; 
        justify-content: flex-start; 
        padding: 120px 5% 100px 5%; 
        height: auto; 
        min-height: 100vh; 
    }

    /* Stack identity and specs */
    .hero-identity-container { 
        height: auto; 
        min-height: 280px; 
        width: 100%; 
        margin-top: 40px;
    }

    .hero-specs { 
        border-left: none; 
        border-top: 1px solid rgba(190, 140, 80, 0.2); 
        padding: 30px 0 0 0; 
        margin-top: 30px; 
        text-align: left; 
        width: 100%; 
        min-height: auto;
        justify-content: flex-start;
    }

    .spec-group { 
        position: relative; 
        display: none; 
        transform: none;
    }

    .spec-group.active { display: flex; }
    .btn-hero-primary { justify-content: flex-start; }

    /* Keep Foundation visible for flight target */
    .hero-foundation { 
        position: fixed; /* Fix to bottom for consistent target */
        bottom: 20px; 
        left: 0;
        width: 100%;
        padding: 0 5%;
        flex-direction: column;
        gap: 20px;
    }

    .hero-nav-thumbs { 
        display: flex !important; /* Force display for flight target */
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .nav-thumb {
        width: 18%; /* Scale thumbs to fit screen width */
        height: 50px;
    }

    .nav-thumb.active { width: 22%; }

    .foundation-actions, .slider-status {
        width: 100%;
        justify-content: space-between;
    }

    /* Preloader adjustments for smaller screens */
    .preloader-center-stack {
        width: 80vw;
        height: 50vw;
    }
    
    .preloader-title {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }
}

/* Specific fix for very small mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 35px; }
    .nav-thumb { height: 40px; }
    .hero-description { font-size: 13px; }
}
@media (max-width: 1024px) {
    /* ... other existing media query styles ... */

    .hero-foundation { 
        /* CHANGE: From 'fixed' to 'absolute' or 'relative' */
        position: absolute; 
        bottom: 30px; /* Position it at the bottom of the HERO section only */
        left: 0;
        width: 100%;
        padding: 0 5%;
        flex-direction: column;
        gap: 20px;
        z-index: 15;
    }

    /* Ensure the Hero section itself has enough room for the absolute foundation */
    .hero-monolith {
        padding-bottom: 150px; /* Adds space so navigation doesn't cover text */
        height: auto;
        min-height: 100vh;
    }

    .hero-nav-thumbs { 
        display: flex !important;
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    /* Prevent navigation from being cut off on very short screens */
    @media (max-height: 700px) {
        .hero-foundation {
            position: relative;
            bottom: auto;
            margin-top: 40px;
        }
    }
}
/* --- VINN LENS LIGHT COLORWAY --- */
.vinn-lens-section {
    height: 130vh;
    /* Soft Blue-Gray background inspired by the property siding */
    background: #F4F7F9; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    color: #2C3E50; /* Slate Blue from the roof */
}

/* Container for the rotating elements */
.vinn-lens-orbit {
    position: absolute;
    width: 150vh;
    height: 150vh;
    border: 1px solid rgba(140, 115, 86, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* This handles the overall rotation */
    animation: rotateOrbit 80s linear infinite; 
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* The SVG needs to scale with the orbit */
.vinn-lens-svg-text {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.vinn-lens-marker {
    font-family: 'Cinzel', serif;
    font-size: 54px; /* Reduced size so the full name fits and looks premium */
    text-transform: uppercase;
    letter-spacing: 8px;
    fill: rgba(140, 115, 86, 0.12); /* Slightly higher opacity for visibility */
}

/* Container */
.vinn-lens-container {
    width: 100%;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* The Lens (Center) */
.vinn-lens-center {
    width: 780px;
    height: 100vh;
    background: #FFFFFF;
    padding: 3px; 
    /* Gradient using the property wood and stone colors */
    background: linear-gradient(135deg, #8C7356, #AAB7C4); 
    clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

.vinn-lens-frame {
    background: #FFFFFF; /* Crisp white interior */
    height: 100%;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    clip-path: inherit;
    color: #2C3E50;
}

.vinn-lens-tag {
    font-family: 'Montserrat';
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 15px;
    color: #8C7356; /* Wood accent color */
}

.vinn-lens-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 0.9;
    margin: 20px 0;
    color: #1A252F;
}

.vinn-lens-title span {
    color: rgb(190 140 80);
   
}

/* INTERNAL SCROLLER */
.vinn-lens-scroll-area {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px;
    margin: 20px 0;
    
    /* EXPERT UPDATE: Added explicit height constraints to prevent 3-line clipping */
    height: 320px;            /* Forces a clear structural height window */
    max-height: 600px;        /* Prevents the block from overflowing sections on small laptops */
}

/* Customized Scrollbar Tracks */
.vinn-lens-scroll-area::-webkit-scrollbar { 
    width: 3px;               /* Slightly widened for better interaction tracking */ 
}
.vinn-lens-scroll-area::-webkit-scrollbar-track {
    background: rgba(140, 115, 86, 0.05); /* Adds a subtle trace track line */
}
.vinn-lens-scroll-area::-webkit-scrollbar-thumb { 
    background: #8C7356; 
}

.vinn-lens-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;          /* Optimized down slightly from 18px to increase reading capacity per view */
    line-height: 1.8;
    color: #5D6D7E;           /* Softened slate */
    margin-bottom: 25px;
}

.vinn-highlight {
    font-weight: 600;
    color: #1A252F;
    font-size: 17px;
}

.vinn-lens-divider {
    width: 30px;
    height: 1px;
    background: #8C7356;
    margin-bottom: 25px;
}

.vinn-lens-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.vinn-lens-stats {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #636b74;           /* Light stone gray */
}

.vinn-lens-btn {
    font-family: 'Cinzel', serif;
    text-decoration: none;
    color: #1A252F;
    border: 1px solid #8C7356; /* Wood-tone border */
    padding: 10px 25px;
    font-size: 11px;
    letter-spacing: 3px;
    transition: 0.4s;
    background: transparent;
    display: inline-block;     /* Ensures proper padding alignment on link buttons */
}

.vinn-lens-btn:hover {
    background: #8C7356;
    color: #FFFFFF;
}

/* SIDE ARTIFACTS */
.vinn-lens-artifact {
    width: 280px;
    position: relative;
    animation: floatArtifact 6s ease-in-out infinite;
}

.vinn-lens-artifact img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    /* Clean natural filter instead of sepia */
    filter: brightness(1.05) contrast(0.95); 
    border: 10px solid rgb(190, 140, 80, 0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.vinn-lens-caption {
    font-family: 'Montserrat';
    font-size: 12px;
    color: #8C7356;
    margin-top: 15px;
    letter-spacing: 3px;
    text-align: center;
}
/* --- STATE-SHIFT LOGIC --- */

/* Default hidden state for the About view */
.vinn-hidden-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* Transitioning the Center Frame height/width slightly when changing */
.vinn-lens-center {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Transitioning the Tag and Title */
.vinn-lens-tag, .vinn-lens-title {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* IMAGE SHIFT: When in "About" mode, we push the side images further away or blur them */
[data-state="about"] .vinn-lens-side {
    filter: blur(4px);
    opacity: 0.3;
    transform: scale(0.9);
}

/* Change color of the border/frame in About mode */
[data-state="about"] .vinn-lens-center {
    background: linear-gradient(135deg, #AAB7C4, #8C7356); /* Flip the gold/stone gradient */
    width: 720px; /* Make it slightly wider for the 'About' reading experience */
}

/* Smooth fade for content swap */
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-in {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}
/* --- BUTTON GROUPING --- */
.vinn-btn-group {
    display: flex;
    gap: 10px;
}

.vinn-video-btn {
    background: #1A252F !important;
    color: #FFFFFF !important;
    border-color: #1A252F !important;
}

/* --- VIDEO EMBED DESIGN --- */
.vinn-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid #8C7356;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.vinn-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- STATE CHANGE: VIDEO MODE --- */
[data-state="video"] .vinn-lens-center {
    width: 850px; /* Expand for better cinema view */
}

[data-state="video"] .vinn-lens-side {
    filter: blur(10px) grayscale(1);
    opacity: 0.1;
}

[data-state="video"] .vinn-lens-frame {
    background: #fdfdfd; /* Slight tint change */
}
/* Base Section State */
.vinn-lens-section {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
    transform: scale(0.85); /* Starting scale */
    opacity: 0;
    will-change: transform, opacity;
}

/* Zoomed in / Active State */
.vinn-lens-section.is-visible {
    transform: scale(1);
    opacity: 1;
}

/* Zoomed out / Exit State */
.vinn-lens-section.is-exiting {
    transform: scale(1.1); /* Optional: zoom past the user */
    opacity: 0;
}

/* Ensure views transition smoothly */
.vinn-content-view {
    transition: opacity 0.4s ease;
}

.vinn-hidden-view {
    display: none;
    opacity: 0;
}
/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablet / iPad (Portrait) */
@media (max-width: 1024px) {
    .vinn-lens-container {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 20px;
    }

    .vinn-lens-center {
        width: 90%; /* Let it breathe on iPad */
        height: auto;
        min-height: 60vh;
    }

    .vinn-lens-side {
        display: none; /* Hide side artifacts to save space */
    }

    .vinn-lens-orbit {
        width: 100vw;
        height: 100vw;
    }

    .vinn-lens-marker {
        font-size: 34px; /* Smaller text for smaller orbits */
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .vinn-lens-section {
        height: auto; /* Allow scrolling on mobile */
        padding: 60px 0;
        overflow-y: visible;
    }

    .vinn-lens-center {
        width: 95%;
        margin: 0 auto;
        clip-path: none; /* Simplify shape for mobile performance */
        border-radius: 20px;
    }

    .vinn-lens-frame {
        padding: 30px 20px;
        clip-path: none;
        border-radius: 18px;
    }

    .vinn-lens-title {
        font-size: 2.2rem; /* Scaled down title */
    }

    .vinn-lens-p {
        font-size: 16px; /* Better readability on phones */
    }

    .vinn-lens-orbit {
        display: none; /* Orbit often causes horizontal scroll bugs on mobile */
    }

    /* Stack buttons on very small screens */
    .vinn-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .vinn-lens-btn {
        width: 100%;
        text-align: center;
    }
}
/* --- RESPONSIVE STATE & HIDDEN LOGIC --- */

@media (max-width: 1024px) {
    /* Ensure the hidden view doesn't take up space when not active */
    .vinn-hidden-view {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Prevent the 'About' state from making the lens too wide on Tablet/Mobile */
    [data-state="about"] .vinn-lens-center {
        width: 95% !important; /* Overrides the 720px desktop width */
        min-height: 50vh;
    }

    /* On mobile, the 'Zoom Out' should be less aggressive to prevent white gaps */
    .vinn-lens-section {
        transform: scale(0.98); /* Start slightly smaller */
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    }

    .vinn-lens-section.is-visible {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    /* Ensure the scroll area doesn't cause page-jump on mobile */
    .vinn-lens-scroll-area {
        max-height: 400px; /* Limits height so footer is always reachable */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth momentum scroll for iOS */
    }
    
    /* Center the title span for better mobile balance */
    .vinn-lens-title {
        text-align: center;
        width: 100%;
    }
}
/* --- AMENITIES: UNIQUE SCOPE (VINN-PROP) --- */
/* --- AMENITIES: UNIQUE SCOPE (VINN-PROP) --- */
.vinn-prop-section {
    height: 100vh;
    background: #0d1317; /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    position: relative;
    perspective: 2000px;
}

/* Background Image Layer */
.vinn-prop-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* REPLACE 'your-image-path.jpg' with your actual image URL */
    background-image: url('../images/new/lobby2.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: creates a parallax effect */
    opacity: 0.25; /* Low opacity keeps it subtle and "antique" */
    filter: grayscale(40%) brightness(0.6); /* Desaturates to match the dark theme */
    z-index: 0;
}

/* Ensure the container sits above the background */
.vinn-prop-container {
    width: 100%;
    max-width: 1400px;
    height: 85vh;
    display: flex;
    /* Glassmorphism Effect */
    background: rgba(13, 19, 23, 0.7); 
    border: 1px solid rgba(190, 140, 80, 0.2);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    padding: 60px;
    z-index: 1;
    
    animation: vinnPropContainerReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- THE REST OF YOUR CSS REMAINS THE SAME --- */
/* --- HEADER STYLING --- */
.vinn-prop-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.vinn-prop-tag {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;
    color: #BE8C50; /* Matches your Hero Gold */
    margin-bottom: 15px;
    display: block;
}

.vinn-prop-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin: 10px 0 25px;
    color: #FFFFFF;
}

.vinn-prop-title span {
    color: #BE8C50; /* Gold Highlight */
}

.vinn-prop-subtext {
    font-family: 'Montserrat', sans-serif;
    color: rgba(170, 183, 196, 0.8);
    font-size: 15px;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 30px;
}

.vinn-prop-line {
    width: 40px;
    height: 1px;
    background: #BE8C50;
}

/* --- THE INTERACTIVE GRID --- */
.vinn-prop-layout-grid {
    flex: 1.6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
}

.vinn-prop-card {
    background: rgba(26, 37, 47, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFF;
    padding: 35px 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    /* Entrance Stagger Animation */
    animation: propCardFadeIn 0.8s ease forwards;
    animation-delay: calc(var(--order) * 0.12s);
    opacity: 0;
}

@keyframes propCardFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.vinn-prop-card:hover {
    background: #1A252F;
    border-color: #BE8C50;
    transform: scale(1.03) translateY(-8px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.vinn-prop-icon-box {
    font-size: 34px;
    color: #BE8C50;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.vinn-prop-card:hover .vinn-prop-icon-box {
    transform: scale(1.15);
}

.vinn-prop-card-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

/* --- DETAIL VIEWER PANEL --- */
.vinn-prop-detail-box {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 450px;
    pointer-events: none;
}

#vinnPropTitle { 
    font-family: 'Cinzel', serif; 
    color: #FFF; 
    font-size: 26px; 
    margin-bottom: 12px; 
    opacity: 0; 
    transform: translateY(15px);
    transition: all 0.5s ease; 
}

#vinnPropDesc { 
    font-family: 'Montserrat', sans-serif; 
    color: #BE8C50; 
    font-size: 15px; 
    line-height: 1.7; 
    opacity: 0; 
    transform: translateY(15px);
    transition: all 0.5s 0.1s ease; 
}

.vinn-active-view { opacity: 1 !important; transform: translateY(0) !important; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .vinn-prop-section { height: auto; padding: 100px 5%; }
    .vinn-prop-container { flex-direction: column; height: auto; padding: 40px; }
    .vinn-prop-title { font-size: 2.8rem; }
    .vinn-prop-layout-grid { grid-template-columns: repeat(2, 1fr); margin-top: 50px; }
    .vinn-prop-detail-box { position: relative; left: 0; bottom: 0; margin-top: 40px; }
}

@media (max-width: 768px) {
    .vinn-prop-layout-grid { grid-template-columns: 1fr; }
    .vinn-prop-card { padding: 40px 20px; }
}
/* --- AMENITIES: KINETIC ANIMATIONS (VINN-PROP) --- */

/* 1. Add perspective to the root section to enable 3D effects */
.vinn-prop-section {
    /* ... existing styles (height, background, flex) ... */
    perspective: 2000px; /* Enables 3D space for children */
}

/* 2. The Container Entrance: Slight Tilt & Reveal */
.vinn-prop-container {
    /* ... existing styles (backdrop-filter, borders, padding) ... */
    
    /* ENTRANCE ANIMATION */
    animation: vinnPropContainerReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateZ(-100px) rotateX(5deg);
    will-change: transform, opacity;
}

@keyframes vinnPropContainerReveal {
    to {
        opacity: 1;
        transform: translateZ(0) rotateX(0deg);
    }
}

/* 3. The Grid Interaction: Focus Blurring */
/* When ANY card is hovered, BLEED (blur) the others */
.vinn-prop-layout-grid:hover .vinn-prop-card:not(:hover) {
    filter: blur(5px) grayscale(50%);
    opacity: 0.4;
    transform: scale(0.95);
}

/* 4. The Card: Entrance Stagger & Unique Hover */
.vinn-prop-card {
    /* ... existing styles (background, border, flex) ... */
    
    /* Base State for Entrance */
    opacity: 0;
    transform: translateY(40px) translateZ(-50px);
    
    /* Re-defined transition for smoother focus interaction */
    transition: 
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
        filter 0.6s ease, 
        opacity 0.6s ease, 
        background 0.4s ease, 
        border-color 0.4s ease;

    /* Staggered Entrance Animation */
    animation: vinnPropCardStagger 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(800ms + (var(--order) * 100ms)); /* Starts AFTER container reveal */
}

@keyframes vinnPropCardStagger {
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

/* 5. The Card Hover: Kinship Accent */
.vinn-prop-card:hover {
    background: rgba(26, 37, 47, 1); /* Solid dark */
    border-color: #BE8C50; /* Gold */
    
    /* POP EFFECT: Pulls forward in 3D space */
    transform: scale(1.08) translateZ(50px);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    
    filter: blur(0) grayscale(0); /* Ensure active card is sharp */
    opacity: 1;
}

/* 6. The Icon: Kinship Accent */
.vinn-prop-icon-box {
    /* ... existing styles (color, size) ... */
    position: relative;
}

/* Antique "Shine" overlay on hover */
.vinn-prop-icon-box::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    background-size: 200% 200%;
    background-position: 200% 200%;
    transition: 0s;
    opacity: 0;
}

.vinn-prop-card:hover .vinn-prop-icon-box::after {
    animation: vinnPropIconShine 1s inset;
    opacity: 1;
}

@keyframes vinnPropIconShine {
    to { background-position: -200% -200%; }
}

/* 7. Detail View: The Reveal */
#vinnPropTitle, #vinnPropDesc {
    /* ... existing styles (opacity 0, transform Y 15px) ... */
    will-change: transform, opacity;
}

.vinn-active-view {
    opacity: 1 !important;
    /* Unique Elastic Reveal */
    transform: translateY(0) !important;
    transition: 
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
        opacity 0.5s ease !important;
}

/* --- RESPONSIVE ANIMATION DISABLE --- */
@media (max-width: 1024px) {
    /* Disable complex 3D and blurring on mobile for performance */
    .vinn-prop-section { perspective: none; }
    .vinn-prop-container { animation: vinnPropFadeInMobile 1s ease forwards; transform: none; }
    .vinn-prop-card { animation: vinnPropFadeInMobile 1s ease forwards; transform: none; animation-delay: 0s; opacity: 1; }
    .vinn-prop-layout-grid:hover .vinn-prop-card:not(:hover) { filter: none; opacity: 1; transform: none; }
    .vinn-prop-card:hover { transform: translateY(-5px); }
    
    @keyframes vinnPropFadeInMobile { from { opacity: 0; } to { opacity: 1; } }
}

/* --- ROOMS SECTION MASTER --- */
.vinn-rooms-section {
    position: relative;
    padding: 30px 0;
    min-height: 100vh;
    background: url('../images/new/lobby2.webp') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.vinn-rooms-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(0 0 0 / 80%) 0%, rgba(13, 19, 23, 0.98) 100%);
    z-index: 1;
}

.vinn-rooms-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- SWIPER CAROUSEL STRUCTURE --- */
.swiper.vinnRoomsSwiper {
    padding-bottom: 60px;
    padding-top: 40px; /* Space for the floating room numbers */
}

/* THE EQUALIZER: This forces every card to match the tallest one */
.vinn-room-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(190, 140, 80, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    
    /* Layout logic for equal heights */
    display: flex;
    flex-direction: column;
    height: 100%; /* Swiper slide height is 100%, card fills it */
    min-height: 720px; /* High enough to prevent layout shifts */
    position: relative;
}

.vinn-room-card:hover {
    background: rgba(190, 140, 80, 0.05);
    border-color: #BE8C50;
    transform: translateY(-10px);
}

.vinn-room-number {
    position: absolute;
    top: -25px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: 45px;
    font-weight: 700;
    color: #BE8C50;
    opacity: 0.15;
    z-index: 5;
    pointer-events: none;
}

/* --- IMAGE BOX --- */
.vinn-room-image-box {
    height: 260px; /* Consistent baseline for images */
    flex-shrink: 0;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
}

.vinn-room-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CONTENT ALIGNMENT --- */
.vinn-room-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the footer content to the bottom */
}

.vinn-room-content h3 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 22px; /* Kept large as requested */
    margin-bottom: 15px;
    line-height: 1.3;
    
    /* Force title area to be 3 lines tall so icons align */
    min-height: 85px; 
    display: flex;
    align-items: flex-start;
}

.room-brief {
    font-family: 'Montserrat';
    font-size: 15px; /* Kept legible */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    
    /* Force brief area to be consistent regardless of word count */
    min-height: 120px; 
}

/* --- META GRID ALIGNMENT --- */
.vinn-room-meta {
    margin-top: auto; /* Pushes meta and link to the absolute bottom of card */
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    
    /* Ensures the meta section height is same for 4 items vs 8 items */
    min-height: 160px; 
    align-content: start;
}

.vinn-room-meta span {
    font-family: 'Montserrat';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
}

.vinn-room-meta span i {
    color: #BE8C50;
    margin-right: 10px;
    width: 18px;
    text-align: center;
    font-size: 15px;
}

.vinn-room-link {
    display: inline-block;
    margin-top: 25px;
    color: #BE8C50;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.vinn-room-link:hover {
    color: #ffffff;
    padding-left: 10px;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 1024px) {
    .vinn-room-card { min-height: 650px; }
    .vinn-room-content h3 { min-height: 60px; }
    .room-brief { min-height: 100px; }
}
/* --- HEADER ENHANCEMENTS --- */
.vinn-prop-tag {
   
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #BE8C50;
    display: block;
    margin-bottom: 10px;
}

.vinn-rooms-header {
    text-align: right;
    margin-bottom: 80px;
}

.vinn-rooms-main-title {
   
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 400;
}

.vinn-rooms-main-title span {
    color: #BE8C50;
    
}
/* --- SWIPER NAVIGATION CUSTOMIZATION --- */

/* Positioning the container to ensure arrows don't overlap cards on small screens */
.swiper.vinnRoomsSwiper {
    padding-bottom: 80px; /* Increased space for pagination dots */
    padding-top: 40px;
    overflow: visible; /* Allows navigation buttons to sit slightly outside if needed */
	
}

/* Arrows: Making them thicker and brighter gold */
.swiper-button-next, 
.swiper-button-prev {
    color: #fff !important; /* High-visibility Gold */
  
    width: 50px;
    height: 50px;
    border-radius: 10%;
   
    transition: all 0.3s ease;
}

/* Arrow size adjustment (the actual icon) */
.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
 
    color: #fff !important; /* Invert colors on hover for clear feedback */
   
   
}

/* Pagination Dots: Higher contrast for visibility */
.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.4; /* Stronger than default */
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

/* Active Dot */
.swiper-pagination-bullet-active {
    background: #D4AF37 !important; /* Gold for the current slide */
    opacity: 1;
    width: 30px; /* Elongated pill shape for the active slide */
    border-radius: 6px;
}

/* Accessibility: Focus states for keyboard users */
.swiper-button-next:focus, 
.swiper-button-prev:focus,
.swiper-pagination-bullet:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .swiper-button-next, 
    .swiper-button-prev {
        display: none; /* Hide arrows on mobile to save space; users will swipe */
    }
    
    .swiper.vinnRoomsSwiper {
        padding-bottom: 60px;
    }
}
/* --- VORTEX ATTRACTIONS MASTER: TEAL & GOLD --- */
.vinn-attraction-vortex {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #1b2630; /* Updated: Deep Midnight Teal */
    overflow: hidden;
}

.vinn-vortex-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinn-vortex-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* --- THE VORTEX FRAMEWORK (Structural Tracks) --- */
.vortex-container { 
    position: relative; 
    width: 100%; 
    height: 100%; 
}

.vortex-row, .vortex-col {
    position: absolute;
    overflow: hidden;
    background: #121d25; /* Slightly darker teal for depth */
}

/* Track Positions */
.top-row { top: 0; left: 0; width: 100%; height: 18vh; }
.bottom-row { bottom: 0; left: 0; width: 100%; height: 18vh; }
.right-col { top: 18vh; right: 0; width: 25vw; height: 64vh; }
.left-col { top: 18vh; left: 0; width: 25vw; height: 64vh; }

/* Track Appearance */
.track {
    display: flex;
    background-size: cover;
    background-position: center;
    /* Added a slight teal tint to the grayscale filter */
    filter: brightness(0.3) grayscale(10%) sepia(5%) ;
    transition: filter 0.10s ease;
}

/* Attraction Image Selectors (Ensure these match your HTML classes) */
.t-golf, .b-golf, .r-golf, .l-golf { background-image: url('../images/golf.jpg'); }
.t-forest, .b-forest, .r-forest, .l-forest { background-image: url('../images/forest-strip.jpg'); }
.t-town, .b-town, .r-town, .l-town { background-image: url('../images/town-strip.jpg'); }
.t-club, .b-club, .r-club, .l-club { background-image: url('../images/club-strip.jpg'); }
.t-ice, .b-ice, .r-ice, .l-ice { background-image: url('../images/ice-strip.jpg'); }

/* --- CORE ANIMATIONS --- */
.top-row .track { animation: moveRight 35s linear infinite; width: 200%; height: 100%; }
.bottom-row .track { animation: moveLeft 35s linear infinite; width: 200%; height: 100%; }
.right-col .track { animation: moveDown 35s linear infinite; height: 200%; width: 100%; flex-direction: column; }
.left-col .track { animation: moveUp 35s linear infinite; height: 200%; width: 100%; flex-direction: column; }

@keyframes moveRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes moveLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes moveDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@keyframes moveUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }

/* --- CENTER CONTENT STYLING --- */
.vortex-center-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 60%;
    color: #fff;
}

.vortex-center-content h2 span {
    color: #BE8C50; /* Signature Gold */
    font-style: italic;
}

.vortex-center-content p {
    font-family: 'Montserrat';
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75); /* Softened white for teal contrast */
    margin: 20px auto;
    max-width: 500px;
}

.vortex-center-content .btn-ledger {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #BE8C50;
    color: #BE8C50;
    text-decoration: none;
    font-family: 'Cinzel';
    letter-spacing: 3px;
    font-size: 15px;
    transition: all 0.4s ease;
    margin-top: 30px;
    background: transparent;
}

.vortex-center-content .btn-ledger:hover {
    background: #BE8C50;
    color: #1b2630; /* Updated hover text color to match background */
}

/* --- NAVIGATION DOTS --- */
.vortex-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 100;
}

.v-btn {
    background: none; border: none;
    color: #fff; font-family: 'Cinzel';
    font-size: 18px; cursor: pointer;
    opacity: 0.35; transition: 0.4s;
    padding: 10px;
}

.v-btn.active {
    opacity: 1;
    color: #BE8C50;
    transform: scale(1.3);
}

/* --- CRITICAL RESPONSIVE REPAIR --- */

/* Fix for iPad / Tablets (Landscape & Portrait) */
@media (max-width: 1024px) {
    .vinn-attraction-vortex {
        height: 70vh; /* Slightly shorter for better tablet framing */
    }
    
    .vortex-center-content {
        width: 80%; /* Give text more room */
    }

    .top-row, .bottom-row { height: 12vh; }
    .right-col, .left-col { 
        width: 15vw; 
        height: 46vh; /* (70vh total - 24vh for rows) */
        top: 12vh; 
    }
}

/* Fix for Mobile Phones */
@media (max-width: 768px) {
    /* 1. Prevent Horizontal Scroll */
    .vinn-attraction-vortex {
        height: 100vh; /* Full screen height for impact */
        overflow: hidden;
        display: block; /* Ensure it stays a block */
        padding: 0; /* Remove the padding that was pushing content */
    }

    /* 2. Keep the Tracks Visible but Thinner */
    .vortex-row, .vortex-col { 
        display: flex !important; /* Force visibility */
    }

    /* Thinner tracks so text has space */
    .top-row, .bottom-row { height: 10vh; }
    .right-col, .left-col { 
        width: 12vw; 
        height: 80vh; 
        top: 10vh; 
    }

    /* 3. Center Content Adjustments */
    .vortex-center-content {
        position: absolute; /* Put it back in the middle */
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 75%; /* Narrower to avoid hitting the moving side tracks */
        margin: 0;
    }

    .vinn-rooms-main-title { 
        font-size: 1.8rem; 
        line-height: 1.2;
    }

    .vortex-center-content p { 
        font-size: 13px; 
        line-height: 1.5;
        margin: 15px auto;
    }

    .vortex-center-content .btn-ledger {
        padding: 10px 25px;
        font-size: 12px;
    }

    /* 4. Navigation Dots */
    .vortex-nav {
        bottom: 12vh; /* Move above the bottom track */
        gap: 15px;
    }
    
    .v-btn {
        font-size: 14px;
    }
}

/* Small Phone Fix (iPhone SE etc) */
@media (max-width: 380px) {
    .vortex-center-content {
        width: 70%;
    }
    .vinn-rooms-main-title { font-size: 1.5rem; }
}
/* --- EDITORIAL GALLERY MASTER STYLES --- */
.vinn-editorial-gallery {
    position: relative;
    padding: 80px 0;
    background: #F4F7F9; /* Light Slate/Blue-Gray */
    overflow: hidden;
}

/* Vertical Ghost Text - Rotated 90 degrees for a modern look */
.vinn-bg-scroll-text {
    position: absolute;
    right: -5%;
    top: 20%;
    font-family: 'Cinzel', serif;
    font-size: 16rem;
    color: rgba(44, 62, 80, 0.03);
    font-weight: 900;
    writing-mode: vertical-rl;
    pointer-events: none;
    letter-spacing: 40px;
}

.vinn-editorial-wrapper {
    display: flex;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 80px;
}

/* --- THEATER (Left Side - Sticky) --- */
.vinn-main-stage {
    flex: 1.5;
    position: sticky;
    top: 120px;
    height: fit-content;
    z-index: 10;
}

.vinn-tag {
    font-family: 'Montserrat';
    color: #BE8C50; /* Signature Gold */
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.vinn-title {
    font-family: 'Cinzel';
    font-size: 3.5rem;
    color: #2C3E50;
    line-height: 1.1;
}

.vinn-title span {
    color: #BE8C50;
    font-style: italic;
}

.vinn-video-frame {
    position: relative;
    margin: 50px 0;
    padding: 15px;
}

.video-inner {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    box-shadow: 30px 30px 60px rgba(44, 62, 80, 0.12);
    z-index: 2;
    overflow: hidden;
}

.video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

/* Geometric Frame Decoration */
.vinn-frame-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70%;
    height: 70%;
    border: 2px solid #BE8C50;
    z-index: 1;
}

.vinn-stage-meta h3 {
    font-family: 'Cinzel';
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 5px;
}

.vinn-stage-meta p {
    font-family: 'Montserrat';
    color: #7F8C8D;
    font-size: 14px;
    letter-spacing: 1px;
}

/* --- STACKED LIBRARY (Right Side) --- */
.vinn-stacked-library {
    flex: 1;
    z-index: 11;
}

.vinn-card-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
}

.vinn-card {
    position: relative;
    height: 160px;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(44, 62, 80, 0.08);
    background: #fff;
    display: block;
    text-decoration: none;
}

.vinn-card .card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.5);
    transition: transform 1.2s ease, filter 0.8s ease;
}

.vinn-card:hover .card-image,
.vinn-card.active .card-image {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.card-info {
    position: relative;
    z-index: 5;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8), transparent);
    color: #fff;
    transform: translateY(0);
    transition: 0.4s ease;
}

.card-info span {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.card-info h4 {
    font-family: 'Cinzel';
    font-size: 1.2rem;
    margin-top: 5px;
}

/* The "Expert" Hover Effect: Card pushes out to the left */
.vinn-card:hover {
    transform: translateX(-30px);
    border-color: #BE8C50;
    box-shadow: 20px 20px 40px rgba(44, 62, 80, 0.15);
}

.vinn-card.active {
    transform: translateX(-30px);
    border-left: 5px solid #BE8C50;
}

/* Master Link Styling */
.master-link .card-info {
    background: #fff;
    color: #2C3E50;
}

.master-link i {
    color: #BE8C50;
    font-size: 24px;
    margin-bottom: 10px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1100px) {
    .vinn-editorial-wrapper {
        flex-direction: column;
    }
    
    .vinn-main-stage {
        position: relative;
        top: 0;
    }
    
    .vinn-card:hover {
        transform: none;
    }
    
    .vinn-title {
        font-size: 2.5rem;
    }
}
/* --- VINN ESTATE FOOTER MASTER STYLES --- */
.vinn-estate-footer {
    background-color: #1b2630; /* Alpine Teal */
    position: relative;
    padding-top: 100px;
    color: #fff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* ANTIQUE WATERMARK */
.vinn-footer-watermark {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* Ghosted visibility */
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 15px;
}

.vinn-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 5;
}
/* --- FOOTER LOGO STYLING --- */
.vinn-f-logo {
    height: 70px; /* Controlled height for professional balance */
    width: auto;
    margin-bottom: 30px;
    display: block;
    filter: brightness(0) invert(1); /* Forces the logo to pure white for max legibility on Teal */
    transition: transform 0.4s ease;
}

.vinn-f-logo:hover {
    transform: scale(1.03); /* Subtle interaction on brand hover */
}
.vinn-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}

/* --- TYPOGRAPHY --- */
.vinn-f-heading {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #BE8C50; /* Estate Gold */
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
	text-decoration:none;
}

.vinn-f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(190, 140, 80, 0.4);
}

.vinn-f-tagline {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 16px;
    margin: 25px 0;
}

/* --- LINKS & SOCIALS --- */
.vinn-link-columns { display: flex; gap: 40px; }
.vinn-f-list { list-style: none; padding: 0; }
.vinn-f-list li { margin-bottom: 12px; }

.vinn-f-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinn-f-list a:hover { color: #BE8C50; padding-left: 8px; }

.vinn-gold-cta {
    color: #BE8C50 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(190, 140, 80, 0.5);
}

.vinn-f-socials a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: 0.4s;
    background: rgba(255,255,255,0.02);
	text-decoration:none;
}

.vinn-f-socials a:hover {
    border-color: #BE8C50;
    color: #BE8C50;
    transform: translateY(-5px);
}

/* --- THE LEDGER CARD --- */
.vinn-contact-card {
    background: rgba(0,0,0,0.2);
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid #BE8C50; /* Signature top-edge */
}


.vinn-contact-row { color: #fff; text-decoration: none; font-size: 18px; line-height: 1.6; }
.vinn-contact-row:hover { color: #be8c4b; text-decoration: none; }

/* --- ESTATE BAR (LEGAL) --- */
.vinn-estate-bar {
    background: #16222f; /* Deep Slate Navy matching theme footer/header */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Container wrapper matching standard layout widths */
.vinn-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.vinn-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Style for ownership disclaimer text */
.vinn-ownership {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

.vinn-legal-links a, 
.vinn-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vinn-legal-links a:hover, 
.vinn-credit a:hover { 
    color: #c29b68; /* Brand Warm Muted Gold */
}

.vinn-sep { 
    margin: 0 10px; 
    color: #c29b68; /* Brand Warm Muted Gold separator */
    opacity: 0.6; 
}


@media (max-width: 1024px) {
    .vinn-footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .vinn-bar-content { flex-direction: column; gap: 20px; text-align: center; }
}
/* --- Antique Back to Top Button --- */
.btn-antique-top {
  position: fixed;
  bottom: 75px;
  right: 40px;
  width: 55px;
  height: 75px;
  background: rgba(44, 62, 80, 0.85); /* Dark Slate from your logo centerpiece */
  border: 1px solid rgba(190, 140, 80, 0.4); /* Subtle Gold Border */
  outline: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  padding: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Classical Inner Border Framework */
.btn-antique-top .diamond-frame {
  position: relative;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid #BE8C50; /* Timber Gold */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Decorative corner notches to give an antique architectural structure */
.btn-antique-top .diamond-frame::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 1px solid rgba(190, 140, 80, 0.15);
  pointer-events: none;
}

/* Top Arrow Typography styling */
.btn-antique-top .arrow-up {
  font-size: 22px;
  color: #BE8C50;
  line-height: 1;
  display: inline-block;
  transform: rotate(90deg); /* Explicitly locks the double arrow pointing straight up */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s ease;
}

/* Hover effect: keeps the 90-degree rotation but lifts it slightly */
.btn-antique-top:hover .arrow-up {
  transform: rotate(90deg) translateX(-4px); /* Moves it "upward" on the screen when hovered */
  color: #FFF;
}

/* Serif "TOP" text indicator */
.btn-antique-top .top-text {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: #FFF;
  margin-top: 4px;
  opacity: 0.8;
  transition: color 0.4s ease;
}

/* --- Interactive States --- */
.btn-antique-top:hover {
  background: #2C3E50;
  border-color: #BE8C50;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.btn-antique-top:hover .arrow-up {
  transform: translateY(-3px); /* Subtle classical elevation lift */
  color: #FFF;
}

.btn-antique-top:hover .top-text {
  color: #BE8C50;
}

/* Reveal Active State triggered via JavaScript scrolling */
.btn-antique-top.reveal {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- FULL WIDTH ACCESSIBILITY BAR (REFERENCE STYLE) --- */
.vinn-info-strip {
  width: 100%;
  background: #1A252F; /* Deep, luxury dark solid slate band from your theme */
  border-top: 1px solid rgba(190, 140, 80, 0.2); /* Fine luxury gold dividing rules */
  border-bottom: 1px solid rgba(190, 140, 80, 0.2);
  padding: 18px 0; /* Creates the slim, uniform bar layout look */
  text-align: center;
  box-sizing: border-box;
}

.vinn-info-strip .arch-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Statement Typography */
.vinn-strip-content {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin: 0;
  display: inline-block;
}

/* Gold Inline Phone Link Integration */
.vinn-strip-link {
  font-family: 'Cinzel', serif; /* Keeps the luxury header branding styling alive */
  font-size: 15px;
  font-weight: 700;
  color: #BE8C50; /* Timber Gold */
  text-decoration: none;
  margin-left: 8px;
  white-space: nowrap; /* Forces number to stay on one line on desktop devices */
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Subtle, high-end hover action */
.vinn-strip-link:hover {
  color: #FFF;
  transform: scale(1.02);
}

/* Responsive breakpoint scaling for small mobile phone viewports */
@media (max-width: 991px) {
  .vinn-info-strip {
    padding: 15px 20px;
  }
  .vinn-strip-content {
    font-size: 13px;
    display: block;
  }
  .vinn-strip-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    margin-left: 0;
  }
}
/* --- ACTIVE NAV LINK ACCENTS --- */

/* Changes the text to solid gold and full visibility */
.nav-links a.active {
  color: #BE8C50 !important;
  opacity: 1 !important;
}

/* Forces the luxury underline effect to stay visible permanently for the active link */
.nav-links a.active::after {
  width: 100% !important;
  background: #BE8C50;
}

/* ============================================================
   === UNIQUE INNER PAGE HERO SECTION (Streamlined Static) ===
   ============================================================ */

.inner-monolith {
    position: relative;
    width: 100%;
    height: 80vh; /* Premium depth, slightly shorter than index hero */
    min-height: 600px;
    background: #1A252F; /* Heritage Deep Slate Siding */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the identity text block */
    padding: 0 10%; /* Architectural framing */
    z-index: 5;
}

/* --- THE CANVAS & LENS (Single Static Layer) --- */
.inner-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.inner-static-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Elegant single-image 'Ken Burns' effect to add subtle motion life */
    transform: scale(1.05);
    animation: kenBurnsStatic 10s ease-out forwards;
    will-change: transform;
}

/* Layering effects carried over from index hero for continuity */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/grain.png'); /* Ensure you have this texture file */
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(26, 37, 47, 0.4) 0%, rgba(13, 19, 23, 0.95) 100%);
    pointer-events: none;
}

/* --- THE IDENTITY STACK --- */
.inner-identity-container {
    position: relative;
    z-index: 10;
    width: 60%; /* Anchors content to the left side */
    max-width: 800px;
	margin-top:191px;
}

/* --- HERO ACTION BLOCK (Positioned relative to identity) --- */
.inner-action-block {
    position: absolute;
    bottom: 60px; /* Anchored to bottom right of framed viewport */
    right: 10%;
    z-index: 12;
}

/* Reuse existing button styling from index or create specific matching CTA */
.btn-hero-primary1 {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid rgba(190, 140, 80, 0.6); /* Gold frame */
    padding: 15px 30px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-hero-primary1:hover {
    background: #BE8C50;
    border-color: #BE8C50;
}

.btn-hero-primary1 .btn-text {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFF;
}

.btn-hero-primary1:hover .btn-text { color: #fff; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .inner-monolith {
        height: auto;
        min-height: 80vh;
        padding: 160px 5% 100px 5%; /* Higher top padding to clear sticky header */
        justify-content: flex-start;
    }

    .inner-identity-container {
        width: 100%;
        text-align: left;
    }

    .inner-action-block {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-description { font-size: 14px; line-height: 1.8; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
}

/* --- Subtle Motion Animation --- */
@keyframes kenBurnsStatic {
    from { transform: scale(1.05); }
    to { transform: scale(1.01); }
}



/* ============================================================
   === AMENITIES COHESIVE MONOLITH LUXURY REFINEMENT ===
   ============================================================ */

.vinn-amenities-showcase {
    padding: 40px 0;
    background: #111A22; /* Matches your premium dark theme layout base */
    overflow: clip;
    position: relative;
}

/* --- THE GLOW MOTOR ENGINE WRAPPER --- */
.amenities-glow-engine {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

/* --- INTEGRATED STRUCTURAL GRID MATRIX --- */
.amenities-glow-engine::before,
.amenities-glow-engine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none; /* Crucial: ensures layout interaction isn't blocked */
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Precision Geometric Grid Array Mesh Line Layer */
.amenities-glow-engine::before {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(190, 140, 80, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 140, 80, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; /* Aligns clean proportions across screen widths */
    z-index: -2;
}

/* Vector Ambient Tracking Light Flash */
.amenities-glow-engine::after {
    top: var(--vinn-ay, 0);
    left: var(--vinn-ax, 0);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(190, 140, 80, 0.1) 0%, transparent 75%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Fade matrix into focus smoothly when interacting anywhere inside the workspace block */
.vinn-amenities-showcase:hover .amenities-glow-engine::before,
.vinn-amenities-showcase:hover .amenities-glow-engine::after {
    opacity: 1;
}

/* --- CENTER HEADER FORMATTING --- */
.vinn-center-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.vinn-main-title {
    font-family: 'Cinzel', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #F5F7FA;
    margin-bottom: 20px;
}

.vinn-main-title .accent {
    color: #BE8C50; /* Timber Gold Accent */
    font-weight: 700;
}

.vinn-lens-divider.grid-center {
    margin: 0 auto 25px auto;
    width: 60px;
    height: 1px;
    background: #BE8C50;
}

.vinn-segment-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #A6B4C2;
}

/* --- SECTION HEADINGS --- */
.vinn-group-title {
    
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin: 60px 0 35px 0;
}

.vinn-group-title.left-align {
    text-align: left;
    border-bottom: 1px solid rgba(190, 140, 80, 0.2);
    padding-bottom: 12px;
}

/* --- REFINED AMENITY SHIELD CARDS --- */
.vinn-amenities-grid.featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 22px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card hover echoes the glow interface cleanly */
.amenity-card:hover {
    background: rgba(190, 140, 80, 0.06);
    border-color: #BE8C50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.amenity-card .amenity-icon {
    font-size: 60px;
    color: #BE8C50;
    margin-bottom: 18px;
}

.amenity-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.amenity-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #A6B4C2;
    margin: 0;
}

/* --- SPLIT LIST ARRAYS --- */
.vinn-split-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.vinn-minimal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vinn-minimal-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #E2E8F0;
}

.vinn-minimal-list li i {
    color: #BE8C50;
    font-size: 22px;
    width: 20px;
    text-align: center;
}

.vinn-minimal-list li small {
    display: block;
    font-size: 17px;
    color: #A0AEC0;
    margin-top: 2px;
}

.variation-note {
   
    color: #BE8C50;
    opacity: 0.85;
}

/* --- HIGH-CONTRAST ACCESSIBILITY UNIT --- */
.vinn-nested-accessibility {
    margin-top: 35px;
    background: rgba(26, 37, 47, 0.5);
    padding: 30px;
    border-left: 3px solid #BE8C50;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vinn-nested-accessibility .access-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vinn-nested-accessibility .access-header i {
    color: #BE8C50;
    font-size: 25px;
}

.vinn-nested-accessibility h4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 1px;
}

.vinn-nested-accessibility p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #A6B4C2;
    margin: 0;
}

.vinn-nested-accessibility p strong {
    color: #BE8C50;
}

/* --- MOBILE BREAKPOINT ADAPTATION --- */
@media (max-width: 1024px) {
    .vinn-amenities-grid.featured { grid-template-columns: repeat(2, 1fr); }
    .vinn-split-amenities { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .vinn-amenities-grid.featured { grid-template-columns: 1fr; }
    .vinn-group-title.left-align { text-align: center; }
}


/* ====================================================================
   === ISOLATED UNIQUE CSS FOR VINN ATTRACTIONS BOOK CAROUSEL ARCHIVE ===
   ==================================================================== */

.vinn-attr-arc-section {
    padding: 40px 0;
    background: #111A22;
    position: relative;
    overflow: hidden;
}

/* --- BACKGROUND GLOW GRAPHIC MATRIX --- */
.vinn-attr-arc-glow-engine {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.vinn-attr-arc-glow-engine::before,
.vinn-attr-arc-glow-engine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.vinn-attr-arc-glow-engine::before {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(190, 140, 80, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 140, 80, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}

.vinn-attr-arc-glow-engine::after {
    top: var(--vaa-tx, 0);
    left: var(--vaa-ty, 0);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(190, 140, 80, 0.08) 0%, transparent 75%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.vinn-attr-arc-section:hover .vinn-attr-arc-glow-engine::before,
.vinn-attr-arc-section:hover .vinn-attr-arc-glow-engine::after {
    opacity: 1;
}

/* --- CENTER HEADER CONTAINER --- */
.vinn-attr-arc-center-header {
    text-align: center;
    margin-bottom: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.vinn-attr-arc-main-title {
    font-family: 'Cinzel', serif;
    font-size: 45px;
    color: #FFF;
    line-height: 1.3;
    margin-bottom: 12px;
}
.vinn-attr-arc-main-title .vaa-accent { color: #BE8C50; }
.vinn-attr-arc-lens-divider {
    width: 60px;
    height: 2px;
    background: #BE8C50;
    margin: 0 auto 15px auto;
}
.vinn-attr-arc-segment-desc {
    font-family: 'Montserrat', sans-serif;
    color: #A6B4C2;
    font-size: 18px;
    line-height: 1.6;
}

/* --- MAIN WORKSPACE BOOK BLOCK --- */
.vinn-attr-arc-book-container {
    position: relative;
    max-width: 1280px;
    margin: 50px auto 0 auto;
    padding: 0 60px;
}

.vinn-attr-arc-book {
    position: relative;
    width: 100%;
    height: 620px; 
    background: #151F28; 
    border: 1px solid rgba(190, 140, 80, 0.25);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    perspective: 1800px;
}

.vinn-attr-arc-book::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(190, 140, 80, 0.12);
    pointer-events: none;
    z-index: 15;
}

.vinn-attr-arc-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(190, 140, 80, 0.3), transparent);
    z-index: 20;
}

/* --- ISOLATED ARROW CONTROLS --- */
.vaa-book-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(190, 140, 80, 0.4);
    background: #111A22;
    color: #BE8C50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 60;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vaa-book-nav:hover {
    background: #BE8C50;
    color: #FFFFFF;
    border-color: #BE8C50;
    box-shadow: 0 0 20px rgba(190, 140, 80, 0.4);
}

.vaa-prev-btn { left: 0px; }
.vaa-next-btn { right: 0px; }

.vaa-book-nav.disabled {
    opacity: 0.15;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.05);
}

/* --- ISOLATED SLIDESHOW CARDS (WITH BI-DIRECTIONAL FLIPS) --- */
.vaa-book-page {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    pointer-events: none;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Center Active Page State */
.vaa-book-page.vaa-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
    transform: rotateY(0deg) scale(1);
}

/* Animation Going FORWARD (Flipped out to the left) */
.vaa-book-page.vaa-flipped-out {
    transform: rotateY(-65deg) scale(0.92);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Animation Going BACKWARD (Coming from or going to the right) */
.vaa-book-page.vaa-flipped-back {
    transform: rotateY(65deg) scale(0.92);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
/* --- WORKSPACE COLUMNS SETUP --- */
.vaa-page-side {
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.vaa-page-side.vaa-media-side { padding-right: 40px; }
.vaa-page-side.vaa-content-side { padding-left: 50px; background: rgba(17, 26, 34, 0.4); }

.vaa-journal-img-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.vaa-journal-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* --- SLIDE MOTION ANIMATION MODULES --- */
@keyframes vaaKenBurns1 {
    0% { transform: scale(1.05) translate(0px, 0px); }
    50% { transform: scale(1.15) translate(-10px, -5px); }
    100% { transform: scale(1.05) translate(0px, 0px); }
}

@keyframes vaaKenBurns2 {
    0% { transform: scale(1.18) translate(-5px, 0px); }
    50% { transform: scale(1.08) translate(5px, -8px); }
    100% { transform: scale(1.18) translate(-5px, 0px); }
}

@keyframes vaaKenBurns3 {
    0% { transform: scale(1.05) rotate(0deg); }
    50% { transform: scale(1.12) rotate(1deg); }
    100% { transform: scale(1.05) rotate(0deg); }
}

.vaa-book-page.vaa-active .vaa-video-motion-1 { animation: vaaKenBurns1 24s infinite linear; }
.vaa-book-page.vaa-active .vaa-video-motion-2 { animation: vaaKenBurns2 28s infinite linear; }
.vaa-book-page.vaa-active .vaa-video-motion-3 { animation: vaaKenBurns3 26s infinite linear; }

.vaa-journal-antique-tint {
    position: absolute;
    inset: 0;
    background: rgba(140, 115, 86, 0.15);
    mix-blend-mode: multiply;
    background-image: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
}

.vaa-frame-outline {
    position: absolute;
    top: 45px;
    left: 45px;
    right: 25px;
    bottom: 45px;
    border: 1px solid #BE8C50;
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
}

/* --- TYPOGRAPHY DESCRIPTIONS --- */
.vaa-journal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.vaa-meta-label { font-family: 'Montserrat', sans-serif; font-size: 17px; letter-spacing: 2.5px; text-transform: uppercase; color: #BE8C50; font-weight: 500; }
.vaa-meta-divider { width: 30px; height: 1px; background: rgba(190, 140, 80, 0.3); }
.vaa-meta-value { font-family: 'Montserrat', sans-serif; font-size: 17px; color: #A6B4C2; }
.vaa-page-number { font-family: 'Cinzel', serif; font-size: 15px; color: rgba(190, 140, 80, 0.7); margin-left: auto; }
.vaa-journal-title { font-family: 'Cinzel', serif; font-size: 35px; font-weight: 400; color: #FFFFFF; margin-bottom: 22px; line-height: 1.35; }
.vaa-journal-title .vaa-accent { color: #BE8C50; font-weight: 700; }
.vaa-journal-text { font-family: 'Montserrat', sans-serif; font-size: 17px; line-height: 1.85; color: #C1CDD8; margin: 0; }

/* --- TIMELINE HUD SYSTEM TRACK --- */
.vinn-attr-arc-tracker {
    position: relative;
    max-width: 400px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin: 40px auto 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.vaa-tracker-line-fill {
    height: 100%;
    background: #BE8C50;
    box-shadow: 0 0 8px #BE8C50;
    width: 20%;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ====================================================================
   === FIXED MEDIA QUERY ISOLATION LAYOUT SYSTEMS ===
   ==================================================================== */

@media (max-width: 1024px) {

    .vinn-attr-arc-section {
        padding: 40px 0 60px 0; /* Reduced padding to fit smaller screens */
    }
    
    .vinn-attr-arc-center-header {
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .vinn-attr-arc-main-title {
        font-size: 28px;
    }
    
    .vinn-attr-arc-segment-desc {
        font-size: 17px;
    }

    .vinn-attr-arc-book-container {
        margin: 20px auto 0 auto;
        padding: 0 20px; /* Keep strict padding inside the device viewport */
    }

    /* Constrain the book wrapper to dynamic or strict heights so everything stays above the fold */
    .vinn-attr-arc-book {
        height: 480px; 
        max-height: 70vh;
    }

    .vinn-attr-arc-book::after, 
    .vinn-attr-arc-tracker { 
        display: none !important; 
    }

    /* Stack sections predictably using percentages inside the fixed parent container */
    .vaa-book-page {
        grid-template-columns: 1fr;
        grid-template-rows: 40% 60%; /* Top 40% image, bottom 60% text content */
        opacity: 0;
        transform: none !important; 
    }

    .vaa-page-side {
        padding: 20px !important;
        height: 100%;
        justify-content: flex-start;
    }

    .vaa-page-side.vaa-media-side {
        grid-row: 1;
        padding-bottom: 0 !important;
    }

    .vaa-page-side.vaa-content-side {
        grid-row: 2;
        background: rgba(17, 26, 34, 0.8);
        overflow-y: auto; /* Let content scroll inside the card if text is too long */
    }

    .vaa-frame-outline {
        inset: 15px;
    }

    /* Floating navigation buttons on top of the media frame so users don't scroll */
    .vaa-book-nav {
        top: 20%; /* Centers the arrows perfectly over the image element */
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(17, 26, 34, 0.85);
        backdrop-filter: blur(4px);
        z-index: 70;
    }

    .vaa-prev-btn { left: 30px; }
    .vaa-next-btn { right: 30px; }

    .vaa-journal-meta { margin-bottom: 10px; }
    .vaa-journal-title { font-size: 22px; margin-bottom: 10px; }
    .vaa-journal-text { font-size: 14px; line-height: 1.6; }
}

/* Specific tweaks for small/narrow viewports (e.g., 393px, 430px width) */
@media (max-width: 600px) {
    .vinn-attr-arc-book {
        height: 480px; /* Snug height optimization for shorter display devices */
    }
    
    .vaa-book-page {
        grid-template-rows: 35% 65%;
    }
    
    .vaa-book-nav {
        top: 17.5%;
    }
    
    .vaa-prev-btn { left: 25px; }
    .vaa-next-btn { right: 25px; }
    
    .vaa-journal-title { font-size: 18px; }
    .vaa-journal-text { font-size: 15px; }
    .vaa-meta-label, .vaa-meta-value { font-size: 13px; }
}
@media (max-width: 480px) {
    .vinn-attr-arc-book {
        height: 680px; 
        max-height: 90vh;
    }
}

/* ====================================================================
   === SCOPED THEME FOR TRAVEL LEDGER LOCALITY GRID ===
   ==================================================================== */

.vinn-ledger-section {
    padding: 60px 0;
    background: #111A22;
    position: relative;
    overflow: hidden;
}

/* --- GLOW AMBIENT BACKGROUND MATRIX --- */
.vinn-ledger-glow-engine {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.vinn-ledger-glow-engine::before,
.vinn-ledger-glow-engine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.vinn-ledger-glow-engine::before {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(190, 140, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 140, 80, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.vinn-ledger-glow-engine::after {
    top: var(--vvl-mx, 0);   /* Linked exactly to vertical Y tracking pixel position */
    left: var(--vvl-my, 0);  /* Linked exactly to horizontal X tracking pixel position */
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 140, 80, 0.06) 0%, transparent 80%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.vinn-ledger-section:hover .vinn-ledger-glow-engine::before,
.vinn-ledger-section:hover .vinn-ledger-glow-engine::after {
    opacity: 1;
}

/* --- CONTAINER & DISPLAY MODULE LAYOUT --- */
.vinn-ledger-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.vvl-display-box {
    position: relative;
    width: 100%;
}

/* --- TAB SELECTION ROW ENGINE --- */
.vvl-tabs-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(190, 140, 80, 0.15);
    padding-bottom: 25px;
}

.vvl-tab-btn {
    background: transparent;
    border: 1px solid rgba(190, 140, 80, 0.25);
    padding: 15px 30px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: #A6B4C2;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.vvl-tab-num {
    font-size: 11px;
    color: #BE8C50;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.6;
    letter-spacing: 1px;
}

.vvl-tab-btn:hover,
.vvl-tab-btn.vvl-active {
    background: #BE8C50;
    color: #111A22;
    border-color: #BE8C50;
    box-shadow: 0 10px 25px rgba(190, 140, 80, 0.2);
    font-weight: 600;
}

.vvl-tab-btn.vvl-active .vvl-tab-num {
    color: #111A22;
    opacity: 1;
}

/* --- PANEL SWITCH VISIBILITY CONTROLLERS --- */
.vvl-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vvl-panel.vvl-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- GRID CONFIGURATIONS (DESKTOP DEFAULT) --- */
.vvl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vvl-card {
    background: #151F28;
    border: 1px solid rgba(190, 140, 80, 0.15);
    padding: 35px;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.vvl-card-accent-line {
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190, 140, 80, 0.4), transparent);
    transition: background 0.4s ease;
}

.vvl-card-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #BE8C50;
    margin-bottom: 14px;
    display: block;
}

.vvl-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 14px 0;
    font-weight: 400;
    line-height: 1.3;
}

.vvl-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #C1CDD8;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.vvl-card-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vvl-foot-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #A6B4C2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vvl-foot-value {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: #FFFFFF;
}

.vvl-foot-value.vvl-highlight {
    color: #BE8C50;
    font-weight: 700;
    letter-spacing: 1px;
}

.vvl-card:hover {
    transform: translateY(-5px);
    border-color: rgba(190, 140, 80, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vvl-card:hover .vvl-card-accent-line {
    background: #BE8C50;
}

/* ====================================================================
   === FIXED SYSTEM FOR IPAD & TABLET (max-width: 1024px) ===
   ==================================================================== */
@media (max-width: 1024px) {
    .vinn-ledger-section {
        padding: 50px 0;
    }

    /* Tabs wrap perfectly into equal-sized rows instead of scrolling */
    .vvl-tabs-row {
        display: flex;
        flex-wrap: wrap;       /* Allows tabs to drop down cleanly if space runs out */
        justify-content: center;
        gap: 12px;
        padding-bottom: 20px;
        margin-bottom: 35px;
    }

    /* Tabs distribute width evenly across the available viewport grid */
    .vvl-tab-btn {
        flex: 1 1 calc(33.333% - 12px); /* Tries to fit all 3 on one row on iPad landscape */
        min-width: 200px;               /* Drops smoothly to a multi-row block on portrait view */
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .vvl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ====================================================================
   === FIXED SYSTEM FOR MOBILE SMARTPHONES (max-width: 768px) ===
   ==================================================================== */
@media (max-width: 768px) {
    .vinn-ledger-container {
        padding: 0 20px;
    }

    /* Re-adjust flexible tab buttons for compact smartphone screens */
    .vvl-tab-btn {
        flex: 1 1 100%;       /* Fully stacks buttons cleanly on tiny devices, or fits 2 comfortably */
        min-width: 100%;       /* Ensures uniform clean block button alignments */
    }

    .vvl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vvl-card {
        padding: 25px;
        min-height: auto;
    }

    .vvl-card-accent-line {
        left: 25px;
        right: 25px;
    }

    .vvl-card-title {
        font-size: 21px;
    }
}
/* ====================================================================
   === SYMMETRIC CENTERED THEME FOR RESORT CONTACT DATA ===
   ==================================================================== */

.vinn-centered-contact {
    padding: 100px 0;
    background: #111A22; /* Matches deep dark slate color themes */
    position: relative;
    overflow: hidden;
}

.vinn-cc-container {
    max-width: 1280px; /* UPDATED: Expanded to fit full design matrix frame grid */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* Forces everything down the exact center axis */
    text-align: center;  /* Centers typography lines natively */
}

/* --- HEADER SEGMENT --- */
.vinn-cc-header {
    margin-bottom: 40px;
    width: 100%;
}

.vinn-cc-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #BE8C50;
    display: block;
    margin-bottom: 15px;
}

.vinn-cc-main-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin: 0 0 6px 0;
    line-height: 1.2;
    font-weight: 400;
}

.vinn-cc-gold {
    color: #BE8C50;
    font-weight: 700;
}

.vinn-cc-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #A6B4C2;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.vinn-cc-divider {
    width: 80px;
    height: 2px;
    background: #BE8C50;
    margin: 25px auto 0 auto;
}

/* --- NARRATIVE/DESCRIPTION SEGMENT --- */
.vinn-cc-narrative {
    margin-bottom: 50px;
    max-width: 1280px; /* UPDATED: Increased slightly to naturally balance the 1280px layout bounds */
}

.vinn-cc-narrative p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #C1CDD8;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

.vinn-cc-narrative p:last-of-type {
    margin-bottom: 0;
}

.vinn-cc-narrative p strong {
    color: #FFFFFF;
}

/* --- CENTERED RESORT IDENTITY CARD --- */
.vinn-cc-identity-card {
    background: #16202A;
    border: 1px solid rgba(190, 140, 80, 0.15);
    border-radius: 4px;
    width: 100%;
    max-width: 850px; /* UPDATED: Widened for perfect geometry harmony with 1280px screen canvas */
    padding: 45px 50px 35px 50px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vinn-cc-card-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #BE8C50;
}

.vinn-cc-meta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px; /* UPDATED: Increased grid gap for better legibility spacing on wide views */
    text-align: left; /* Reads standard left-to-right inside the structured grid box */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 35px;
    margin-bottom: 25px;
}

.vinn-cc-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #BE8C50;
    display: block;
    margin-bottom: 10px;
}

.vinn-cc-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.vinn-cc-phone-link {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.2;
}

.vinn-cc-phone-link:hover {
    color: #BE8C50;
}

.vinn-cc-card-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #A6B4C2;
    letter-spacing: 1px;
}

/* ====================================================================
   === RESPONSIVE ENGINE FOR IPADS, TABLETS & SMARTPHONES ===
   ==================================================================== */

@media (max-width: 1024px) {
    .vinn-centered-contact {
        padding: 80px 0;
    }

    .vinn-cc-container {
        padding: 0 30px;
    }

    .vinn-cc-main-title {
        font-size: 36px;
    }

    .vinn-cc-identity-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .vinn-cc-container {
        padding: 0 24px;
    }

    .vinn-cc-main-title {
        font-size: 28px;
    }

    .vinn-cc-sub-title {
        font-size: 12px;
    }

    .vinn-cc-narrative p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vinn-cc-identity-card {
        padding: 35px 25px 25px 25px;
    }

    /* Convert information grid to a singular centered list array for mobile mobile viewports */
    .vinn-cc-meta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-bottom: 30px;
    }

    .vinn-cc-phone-link {
        font-size: 20px;
    }
}

/* ====================================================================
   === SYMMETRIC CENTERED THEME FOR WEBSITE SITEMAP DIRECTORY ===
   ==================================================================== */

.vinn-centered-sitemap {
    padding: 100px 0;
    background: #111A22; /* Matches deep dark slate color themes */
    position: relative;
    overflow: hidden;
}

.vinn-sm-container {
    max-width: 1280px; /* Synchronized perfectly with the 1280px architecture rules */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* Forces alignment directly down the center axis */
    text-align: center;
}

/* --- HEADER SEGMENT --- */
.vinn-sm-header {
    margin-bottom: 40px;
    width: 100%;
}

.vinn-sm-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #BE8C50;
    display: block;
    margin-bottom: 15px;
}

.vinn-sm-main-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin: 0 0 6px 0;
    line-height: 1.2;
    font-weight: 400;
}

.vinn-sm-gold {
    color: #BE8C50;
    font-weight: 700;
}

.vinn-sm-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #A6B4C2;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.vinn-sm-divider {
    width: 80px;
    height: 2px;
    background: #BE8C50;
    margin: 25px auto 0 auto;
}

/* --- NARRATIVE/DESCRIPTION SEGMENT --- */
.vinn-sm-narrative {
    margin-bottom: 50px;
    max-width: 1280px;
}

.vinn-sm-narrative p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #C1CDD8;
    line-height: 1.8;
    margin: 0;
}

/* --- THE DIRECTORY MATRIX BOX --- */
.vinn-sm-directory-card {
    background: #16202A;
    border: 1px solid rgba(190, 140, 80, 0.15);
    border-radius: 4px;
    width: 100%;
    max-width: 950px; /* Balanced ratio within the 1280px container framework */
    padding: 60px 50px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vinn-sm-card-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #BE8C50;
}

/* --- DIRECTORY LINKS LIST MATRIX --- */
.vinn-sm-link-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Architectural clean 3-Column matrix */
    gap: 25px 40px;
    text-align: left; /* Left-align inner grid entries for precise visual symmetry */
}

.vinn-sm-link-grid li {
    position: relative;
}

.vinn-sm-link-grid li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.vinn-sm-link-num {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: #BE8C50;
    margin-right: 12px;
    opacity: 0.7;
    font-weight: bold;
}

/* Hover Mechanics */
.vinn-sm-link-grid li a:hover {
    color: #BE8C50;
    transform: translateX(4px);
}

/* Custom Emphasis Styling for the reservation entry link */
.vinn-sm-link-grid li a.vinn-sm-gold-cta {
    color: #BE8C50;
    font-weight: 600;
}

.vinn-sm-link-grid li a.vinn-sm-gold-cta:hover {
    color: #FFFFFF;
}

/* ====================================================================
   === MEDIA RESPONSIVE ENGINE FOR TABLETS, IPADS & SMARTPHONES ===
   ==================================================================== */

@media (max-width: 1024px) {
    .vinn-centered-sitemap {
        padding: 80px 0;
    }

    .vinn-sm-container {
        padding: 0 30px;
    }

    .vinn-sm-main-title {
        font-size: 36px;
    }

    .vinn-sm-directory-card {
        padding: 45px 40px;
    }

    .vinn-sm-link-grid {
        grid-template-columns: repeat(2, 1fr); /* Dynamic shift to standard 2-column matrix layout */
        gap: 25px 30px;
    }
}

@media (max-width: 768px) {
    .vinn-sm-container {
        padding: 0 24px;
    }

    .vinn-sm-main-title {
        font-size: 28px;
    }

    .vinn-sm-sub-title {
        font-size: 12px;
    }

    .vinn-sm-narrative p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vinn-sm-directory-card {
        padding: 40px 25px;
    }

    /* Convert link grid to a singular centered column array for phone viewports */
    .vinn-sm-link-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .vinn-sm-link-grid li a {
        justify-content: center;
    }
    
    .vinn-sm-link-grid li a:hover {
        transform: none; /* Disables side translation movement animation on small phone screen clicks */
    }
}
/* ====================================================================
   === SYMMETRIC CENTERED THEME FOR RESORT FAQ QUESTION DIRECTORY ===
   ==================================================================== */

.vinn-centered-faq {
    padding: 100px 0;
    background: #111A22; /* Matches deep dark slate color themes */
    position: relative;
    overflow: hidden;
}

.vinn-faq-container {
    max-width: 1280px; /* Aligned precisely to the 1280px design axis standards */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- HEADER SEGMENT --- */
.vinn-faq-header {
    margin-bottom: 50px;
    width: 100%;
}

.vinn-faq-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #BE8C50;
    display: block;
    margin-bottom: 15px;
}

.vinn-faq-main-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin: 0 0 6px 0;
    line-height: 1.2;
    font-weight: 400;
}

.vinn-faq-gold {
    color: #BE8C50;
    font-weight: 700;
}

.vinn-faq-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #A6B4C2;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.vinn-faq-divider {
    width: 80px;
    height: 2px;
    background: #BE8C50;
    margin: 25px auto 0 auto;
}

/* --- THE MASTER BOX CONTAINER FRAME --- */
.vinn-faq-matrix-box {
    background: #16202A;
    border: 1px solid rgba(190, 140, 80, 0.15);
    border-radius: 4px;
    width: 100%;
    max-width: 950px; /* Retains central ratio proportion control within the 1280px wrap */
    padding: 50px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: left; /* Left align QA blocks for optimal content readability matrix */
}

.vinn-faq-card-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #BE8C50;
}

/* --- INDIVIDUAL ITEM ROWS --- */
.vinn-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.vinn-faq-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.vinn-faq-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #BE8C50;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.vinn-faq-question {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-weight: 600;
}

.vinn-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    color: #C1CDD8;
    line-height: 1.75;
    margin: 0;
}

.vinn-faq-answer p strong {
    color: #FFFFFF;
    font-size: 16px;
}

/* --- LINK TEXT DECORATION RULES --- */
.vinn-faq-answer a {
    color: #BE8C50;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(190, 140, 80, 0.4);
    transition: all 0.3s ease;
}

.vinn-faq-answer a:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

.vinn-faq-answer a.vinn-faq-inline-link {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border-bottom: none;
}

.vinn-faq-answer a.vinn-faq-gold-link {
    font-weight: bold;
}

/* ====================================================================
   === MEDIA RESPONSIVE ENGINE FOR TABLETS, IPADS & SMARTPHONES ===
   ==================================================================== */

@media (max-width: 1024px) {
    .vinn-centered-faq {
        padding: 80px 0;
    }

    .vinn-faq-container {
        padding: 0 30px;
    }

    .vinn-faq-main-title {
        font-size: 36px;
    }

    .vinn-faq-matrix-box {
        padding: 40px;
    }

    .vinn-faq-question {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .vinn-faq-container {
        padding: 0 24px;
    }

    .vinn-faq-main-title {
        font-size: 28px;
    }

    .vinn-faq-sub-title {
        font-size: 12px;
    }

    .vinn-faq-matrix-box {
        padding: 35px 25px;
    }

    .vinn-faq-question {
        font-size: 16px;
        line-height: 1.5;
    }

    .vinn-faq-answer p {
        font-size: 13.5px;
        line-height: 1.65;
    }
}

/* --- THE VALLEY INN LOCATION SECTION STYLES --- */
.valley-location-section {
  --primary-brand: #1a365d; /* Elegant deep corporate navy blue */
  --accent-gold: #c5a059;   /* Luxury gold brand line accent */
  --text-dark: #2d3748;
  --text-muted: #4a5568;
  --bg-light: #f7fafc;
  --panel-radius: 12px;
  
  position: relative;
  padding: 80px 20px;
  background-color: var(--bg-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
}

.valley-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Desktop layout split */
@media (min-width: 992px) {
  .valley-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* --- THE VALLEY INN LOCATION SECTION STYLES --- */
.valley-location-section {
  /* Color Palette strictly adapted from the provided live site design */
  --primary-brand: #112233;     /* Dark Slate/Navy background from your site header/footer */
  --accent-gold: #c49859;       /* Muted copper/gold brand accent */
  --text-light: #ffffff;
  --text-muted: #a0aec0;        /* Readable light gray text over dark backgrounds */
  --bg-card: #1a2636;           /* Glass/Panel background tone from your layout content blocks */
  --border-color: #2d3748;
  --panel-radius: 8px;          /* Match the geometric sharp/slightly rounded corners of your UI */
  
  position: relative;
  padding: 60px 20px;
  background-color: var(--primary-brand);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
}

.valley-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}

/* ==========================================================================
   TABLET / IPAD BREAKPOINT (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991px) {
  .valley-container {
    grid-template-columns: 1fr; /* Stacked layout preferred on iPads to allow full-width maps */
    gap: 35px;
  }
  .valley-map-box {
    min-height: 380px !important;
  }
  .valley-info-card {
    padding: 35px !important;
  }
}

/* ==========================================================================
   DESKTOP BREAKPOINT (min-width: 992px)
   ========================================================================== */
@media (min-width: 992px) {
  .valley-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .valley-location-section {
    padding: 90px 20px;
  }
}

/* Map Window Elements */
.valley-map-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  border-radius: var(--panel-radius);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.valley-map-frame {
  width: 100%;
  height: 100%;
  min-height: 350px;
  flex-grow: 1;
}

.valley-map-frame iframe {
  filter: grayscale(20%) invert(90%) hue-rotate(180deg); /* Optional: Sleek dark-mode map integration */
}

.valley-geo-overlay {
  background: var(--bg-card);
  color: var(--accent-gold);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-top: 1px solid var(--border-color);
}

.valley-geo-divider {
  width: 1px;
  height: 14px;
  background-color: var(--border-color);
}

/* Information Card Panel */
.valley-info-card {
  background: var(--bg-card);
  border-radius: var(--panel-radius);
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-gold);
}

/* Mobile specific styling adjustments */
@media (max-width: 480px) {
  .valley-location-section {
    padding: 40px 15px;
  }
  .valley-info-card {
    padding: 20px;
  }
  .valley-title {
    font-size: 1.5rem !important;
  }
}

.valley-brand-line {
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-bottom: 20px;
}

.valley-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.valley-title {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 20px 0;
  font-weight: 600;
}

.valley-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.valley-title a:hover {
  color: var(--accent-gold);
}

.valley-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 25px 0;
}

/* Contact and Address Layout */
.valley-address-container {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--primary-brand);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.valley-icon-wrapper {
  margin-top: 3px;
  flex-shrink: 0;
}

.valley-address-data {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.valley-phone-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.valley-phone-link:hover {
  color: var(--text-light);
  text-decoration: underline;
}

/* Route Direction Form Elements */
.valley-route-form {
  width: 100%;
}

.valley-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Form adjustment for horizontal presentation on Mobile landscape / iPads / Desktop */
@media (min-width: 576px) {
  .valley-input-wrap {
    flex-direction: row;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
  }
}

.valley-input-wrap input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.9rem;
  outline: none;
  background-color: var(--primary-brand);
  color: var(--text-light);
  transition: all 0.2s;
}

.valley-input-wrap input[type="text"]::placeholder {
  color: #718096;
}

@media (min-width: 576px) {
  .valley-input-wrap input[type="text"] {
    border: none;
    border-radius: 0;
    flex-grow: 1;
  }
}

.valley-input-wrap input[type="text"]:focus {
  background-color: #162a3f;
  border-color: var(--accent-gold);
}

.valley-submit-btn {
  background-color: var(--accent-gold);
  color: var(--primary-brand);
  border: none;
  border-radius: 4px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .valley-submit-btn {
    border-radius: 0;
  }
}

.valley-submit-btn:hover {
  background-color: var(--text-light);
  color: var(--primary-brand);
}
/* --- UNIVERSAL COOKIE BANNER --- */
.uni-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #16222f; /* Deep Slate Navy matching the site's main dark sections & footer */
  border-top: 2px solid #BE8C50; /* Warm Muted Gold top border matching the layout accents */
  z-index: 999999;
  padding: 12px 20px;
  box-sizing: border-box;
  display: none; /* Controlled dynamically by JavaScript */
}

.uni-cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.uni-cookie-text {
  color: #ffffff; /* Crisp white text for optimal readability */
  font-size: 14px;
  text-align: center;
}

.uni-cookie-link {
  color: #BE8C50; /* Warm Muted Gold link matching subheadings and buttons */
  text-decoration: underline;
  margin-left: 4px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.uni-cookie-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.uni-cookie-btn {
  background: #BE8C50; /* Warm Gold button matching 'Book Now' and CTA styling */
  color: #ffffff; /* Crisp white button text */
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px; /* Subtle radius matching the site buttons */
  transition: all 0.2s ease;
}

.uni-cookie-btn:hover {
  background: #BE8C50; /* Slightly darker gold on hover */
  color: #ffffff;
}

/* Responsive adjustment for mobile screen breakpoints */
@media (max-width: 600px) {
  .uni-cookie-container {
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
  }
  .uni-cookie-text {
    font-size: 13px;
  }
}
/* Container adjusted to merge cleanly with the cream/white layout sections */
.booking-container {
  width: 100%;
  background-color: #f7f8f9; /* Soft warm off-white matching page background */
  padding: 10px 20px; 
  position: relative;
  z-index: 99;
  box-sizing: border-box;
}

/* Redesigned Reservation Box aligned with Ascend Collection Branding */
.reservation-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e1e5e8; /* Soft subtle border line */
  border-left: 4px solid #c29b68; /* Warm Muted Gold brand accent border */
  box-sizing: border-box;
  padding: 25px 35px; 
  box-shadow: 0 10px 30px rgba(22, 34, 47, 0.08); /* Soft drop shadow using site slate color */
}

.reservation-box form {
  display: flex;
  align-items: flex-end; 
  gap: 20px;
  width: 100%;
}

.form-group {
  flex: 1;
  min-width: 160px; 
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', 'Playfair Display', 'Times New Roman', serif; /* Elegant serif style matching heading fonts */
  font-size: 11px;
  font-weight: 700;
  color: #16222f; /* Deep Slate Navy from header/footer */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 16px; 
}

.form-group label svg {
  color: #c29b68; /* Warm Gold Accent Icon */
}

/* Input and Select Fields */
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdfe3;
  border-radius: 2px;
  font-size: 14px;
  color: #16222f;
  background: #ffffff;
  height: 48px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon input {
  cursor: pointer;
}

/* Vertically Centered Custom Dropdown Arrow */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper::after {
  content: "▼";
  font-size: 8px;
  color: #c29b68; /* Warm Gold arrow */
  position: absolute;
  right: 15px;
  bottom: 19px; 
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #c29b68; /* Gold focus ring */
  background: #fff;
  outline: none;
}

/* Button Group Wrapper */
.form-btn-group {
  flex: 1.2; 
  min-width: 180px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Check Availability / Book Now Button */
.check-btn {
  width: 100%;
  height: 48px; 
  background: #c29b68; /* Warm Gold background matching main layout CTAs */
  color: #ffffff;
  font-family: 'Cinzel', 'Playfair Display', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.check-btn:hover {
  background: #16222f; /* Hover state transitions smoothly to Deep Slate Navy */
  color: #ffffff;
}

/* jQuery UI Datepicker Overrides matching layout colors */
.ui-datepicker {
  border: none !important;
  box-shadow: 0 10px 25px rgba(22, 34, 47, 0.15) !important;
}
.ui-datepicker-header {
  background: #16222f !important; /* Deep Slate Navy header */
  color: #ffffff !important;
  border: none !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight {
  border: 1px solid #c29b68 !important;
  background: #fbf8f3 !important; /* Light tint of warm gold */
  color: #16222f !important;
}
.ui-state-active, .ui-widget-content .ui-state-active {
  background: #c29b68 !important; /* Active selection turns Gold */
  color: #ffffff !important;
  border: 1px solid #c29b68 !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .booking-container {
    padding: 20px 15px;
  }
  .reservation-box {
    padding: 20px; 
  }
  .reservation-box form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .form-group {
    width: 100%;
  }
  .form-group label {
    height: auto;
  }
  .form-btn-group {
    width: 100%;
  }
}