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

/* --- Luxury Design System & Variables --- */
:root {
  --color-bg-deep: #0b0908;       /* Ultimate Dark Obsidian */
  --color-bg-rich: #13100e;       /* Warm Earthy Charcoal */
  --color-bg-card: rgba(22, 19, 17, 0.65); /* Warm Charcoal Glass */
  --color-gold: #c5a880;          /* Champagne Gold */
  --color-gold-rgb: 197, 168, 128;
  --color-gold-hover: #e2cbb0;
  --color-cream: #f4f0eb;         /* Soft Sand Cream */
  --color-cream-dim: #bdae9c;     /* Muted Sand Beige */
  --color-cream-rgb: 244, 240, 235;
  --color-border: rgba(197, 168, 128, 0.15); /* Micro Champagne Border */
  --color-border-hover: rgba(197, 168, 128, 0.45);
  --color-glow: rgba(197, 168, 128, 0.05);  /* Warm radial accent light */
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --shadow-luxe: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 100px rgba(197, 168, 128, 0.02);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  
  --transition-luxe: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  --container-width: 1320px;
}

/* --- Base & Scrollbar Styling --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-bg-deep);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 10px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  font-weight: 300;
  /* Procedural physical luxury noise background + ambient radial glows */
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(197, 168, 128, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(197, 168, 128, 0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
}

/* --- Elegant Custom Cursor --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-deep);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  opacity: 0;
}

/* Cursor States on Hover */
.custom-cursor.hovered {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

.custom-cursor-follower.hovered {
  width: 80px;
  height: 80px;
  background-color: rgba(197, 168, 128, 0.9);
  border-color: var(--color-gold);
  opacity: 1;
}

.custom-cursor-follower.drag-state {
  width: 80px;
  height: 80px;
  background-color: rgba(244, 240, 235, 0.9);
  border-color: var(--color-cream);
  opacity: 1;
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, .serif-text {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.3;
}

p {
  color: var(--color-cream-dim);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- Core Buttons & CTAs --- */
.btn-luxe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-luxe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-luxe:hover {
  color: var(--color-bg-deep);
  border-color: var(--color-gold);
}

.btn-luxe:hover::before {
  transform: translateY(0);
}

.btn-luxe-solid {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  border: 1px solid var(--color-gold);
}

.btn-luxe-solid::before {
  background-color: var(--color-cream);
}

.btn-luxe-solid:hover {
  color: var(--color-bg-deep);
  border-color: var(--color-cream);
}

.text-link-luxe {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  position: relative;
}

.text-link-luxe::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.text-link-luxe:hover::after {
  transform: scaleX(1);
}

.text-link-luxe svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
  transition: var(--transition-fast);
}

.text-link-luxe:hover svg {
  transform: translateX(4px);
}

/* --- Section Layout Template --- */
section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .container {
    padding: 0 24px;
  }
}

.section-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
}

.section-header-split .section-title {
  margin-bottom: 0;
  max-width: 600px;
}

@media (max-width: 768px) {
  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- Navigation Header --- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 30px 0;
}

header.site-header.scrolled {
  padding: 15px 0;
  background-color: rgba(11, 9, 8, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.08);
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 24px;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--color-cream);
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--color-gold);
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cream-dim);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-cream);
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
}

/* Mobile full screen overlay navigation */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-deep);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-luxe);
  background-image: 
    radial-gradient(circle at center, rgba(197, 168, 128, 0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-cream-dim);
  display: block;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  transform: translateY(-5px);
}

.mobile-menu-toggle-active .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-gold);
}

.mobile-menu-toggle-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle-active .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-gold);
}

/* --- Hero Section --- */
section.hero-section {
  padding: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: kenBurns 20s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.45) contrast(1.05);
}

@keyframes kenBurns {
  0% {
    transform: scale(1.03) translate(0, 0);
  }
  100% {
    transform: scale(1.09) translate(1%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 9, 8, 0.4) 0%, rgba(11, 9, 8, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 1.2s forwards 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeInUp 1.5s forwards 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 30px;
}

.hero-title h1 {
  font-weight: 300;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 1.5s forwards 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-cream-dim);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid var(--color-border-hover);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 1.6s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% {
    top: 6px;
    opacity: 1;
    height: 6px;
  }
  50% {
    top: 14px;
    opacity: 0.3;
    height: 4px;
  }
  100% {
    top: 6px;
    opacity: 1;
    height: 6px;
  }
}

/* --- Standalone Booking Section --- */
.booking-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-rich) 100%);
  position: relative;
  border-top: 1px solid var(--color-border);
}

.booking-card-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-luxe);
  padding: 60px 80px;
  border-radius: 8px;
  position: relative;
}

.booking-card-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.booking-card-header .section-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.booking-card-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.booking-card-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(244, 240, 235, 0.6);
  line-height: 1.65;
}

/* Internal gold accent lines on border */
.booking-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.4), transparent);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 24px;
  align-items: flex-end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.booking-field:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(197, 168, 128, 0.1);
}

.booking-field label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Premium input controls */
.booking-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 240, 235, 0.15);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-cream);
  padding: 8px 0;
  width: 100%;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.booking-input:focus {
  border-bottom-color: var(--color-gold);
}

/* Placeholder adjustments for luxury styling */
.booking-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(0.4) saturate(0.8) hue-rotate(345deg);
  opacity: 0.6;
  cursor: pointer;
  transition: var(--transition-fast);
}

.booking-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Select overrides styling */
select.booking-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a880' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 24px;
}

select.booking-input option {
  background-color: var(--color-bg-rich);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px;
}

.booking-submit-btn {
  height: 52px;
  min-width: 190px;
}

@media (max-width: 1100px) {
  .booking-card-inner {
    padding: 50px 40px;
  }
  .booking-card-header h2 {
    font-size: 2.3rem;
  }
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .booking-field:not(:last-child)::after {
    display: none;
  }
  .booking-submit-btn {
    grid-column: span 2;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .booking-section {
    padding: 80px 0;
  }
  .booking-card-inner {
    padding: 35px 24px;
  }
  .booking-card-header {
    margin-bottom: 35px;
  }
  .booking-card-header h2 {
    font-size: 2rem;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .booking-submit-btn {
    grid-column: span 1;
  }
}

/* --- Luxury Suites Section --- */
.organic-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.suite-card {
  position: relative;
  background-color: var(--color-bg-rich);
  border: 1px solid var(--color-border);
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-luxe);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.suite-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-luxe);
}

/* Layered organic positioning for editorial vibe on desktop */
@media (min-width: 1025px) {
  .organic-suites-grid .suite-card:nth-child(1) {
    transform: translateY(0);
  }
  .organic-suites-grid .suite-card:nth-child(2) {
    transform: translateY(40px);
  }
  .organic-suites-grid .suite-card:nth-child(3) {
    transform: translateY(-20px);
  }
  
  .organic-suites-grid {
    padding-bottom: 40px;
    padding-top: 20px;
  }
}

.suite-img-container {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 Elegant aspect ratio */
  overflow: hidden;
}

.suite-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

/* Ambient suite hover details */
.suite-card:hover .suite-img {
  transform: scale(1.08);
}

.suite-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(11, 9, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  z-index: 2;
  border-radius: 2px;
}

.suite-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  background: linear-gradient(to bottom, transparent 0%, rgba(197, 168, 128, 0.02) 100%);
}

.suite-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 10px;
}

.suite-title {
  font-size: 1.6rem;
}

.suite-price {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-gold);
  text-align: right;
  white-space: nowrap;
}

.suite-price span {
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.suite-desc {
  margin-bottom: 24px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.suite-amenities {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 168, 128, 0.08);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-cream-dim);
}

.amenity-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
}

@media (max-width: 1024px) {
  .organic-suites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .organic-suites-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- Story Split Section --- */
.story-split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.story-visual-side {
  flex: 1;
  position: relative;
}

.story-img-wrapper {
  position: relative;
  width: 90%;
  padding-top: 110%;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  border: 1px solid var(--color-border);
}

.story-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11,9,8,0.2), transparent);
}

.story-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

/* Double layered offset element */
.story-offset-element {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 50%;
  padding-top: 60%;
  border: 1px solid var(--color-gold);
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
}

.story-offset-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text-side {
  flex: 1;
  max-width: 550px;
}

.story-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 15px;
  display: block;
}

.story-title {
  margin-bottom: 30px;
}

.story-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.story-quote-box {
  border-left: 2px solid var(--color-gold);
  padding-left: 24px;
  margin: 35px 0;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-cream);
}

.story-author {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 10px;
  display: block;
}

@media (max-width: 991px) {
  .story-split {
    flex-direction: column;
    gap: 60px;
  }
  .story-visual-side {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .story-offset-element {
    bottom: -20px;
  }
  .story-text-side {
    width: 100%;
    max-width: 100%;
  }
}

/* --- Experiences Section (Dynamic Tabs) --- */
.experiences-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.experience-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  padding-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cream-dim);
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--color-gold);
}

.tab-btn.active {
  color: var(--color-gold);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .experience-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    gap: 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    /* Hide scrollbar for standard browsers */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .experience-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Safari iOS */
  }
  
  .tab-btn {
    white-space: nowrap;
    font-size: 0.7rem;
    padding: 8px 16px;
  }
  
  .tab-btn::after {
    bottom: -13px;
  }
}

.experience-content {
  position: relative;
  min-height: 480px;
  margin-top: 20px;
}

.experience-pane {
  display: flex;
  align-items: center;
  gap: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

.experience-pane.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  position: relative; /* Take up physical space */
  z-index: 2;
}

.exp-text-side {
  flex: 1;
  max-width: 500px;
}

.exp-title {
  margin-bottom: 20px;
}

.exp-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.exp-details-list {
  list-style: none;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-cream);
}

.exp-detail-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.exp-img-side {
  flex: 1.2;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  border: 1px solid var(--color-border);
}

.exp-img-wrapper {
  padding-top: 60%;
  position: relative;
}

.exp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.experience-pane.active .exp-img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .experience-pane {
    flex-direction: column-reverse;
    gap: 40px;
    height: auto;
    position: absolute;
  }
  
  .experience-pane.active {
    position: relative;
  }
  
  .exp-img-side {
    width: 100%;
  }
  .exp-text-side {
    width: 100%;
    max-width: 100%;
  }
  .experience-content {
    min-height: auto;
  }
}

/* --- Testimonials Section (Slider) --- */
.testimonials-section {
  background-color: var(--color-bg-rich);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

/* Ambient glow spotlight behind the testimonials slider */
.testimonials-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--color-glow);
  filter: blur(150px);
  pointer-events: none;
  z-index: 1;
}

.testimonials-slider-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-quotes-icon {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(197, 168, 128, 0.08);
  height: 50px;
  display: block;
  text-align: center;
  margin-bottom: -20px;
}

.testimonial-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
  position: relative;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-cream);
  margin-bottom: 25px;
  font-weight: 300;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.testimonial-location {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--color-cream-dim);
  margin-top: 4px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.slider-arrow {
  background: none;
  border: 1px solid rgba(197, 168, 128, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-cream-dim);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  border-color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
}

.slider-arrow:hover svg {
  stroke: var(--color-gold);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.slider-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .testimonial-viewport {
    min-height: 380px;
  }
}

/* --- Masonry Organic Gallery --- */
.gallery-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 9, 8, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.gallery-caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-cream);
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Custom organic grids assignment */
.gallery-item.grid-w-2 {
  grid-column: span 2;
}

.gallery-item.grid-h-2 {
  grid-row: span 2;
}

@media (max-width: 991px) {
  .gallery-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
  }
  /* Keep organic grid layout shapes to maintain visual hierarchy on mobile */
  .gallery-item.grid-w-2 {
    grid-column: span 2;
  }
  .gallery-item.grid-h-2 {
    grid-row: span 2;
  }
  .gallery-overlay {
    opacity: 1; /* Make visible on touch devices so captions are legible */
    background: linear-gradient(to top, rgba(11, 9, 8, 0.9) 0%, rgba(11, 9, 8, 0.1) 70%);
    padding: 12px;
  }
  .gallery-caption {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
  .gallery-caption span {
    font-size: 0.85rem;
    margin-top: 2px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 9, 8, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  box-shadow: var(--shadow-luxe);
  border: 1px solid var(--color-border);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cream-dim);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lightbox-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-cream-dim);
  stroke-width: 1.5;
}

.lightbox-close-btn:hover {
  color: var(--color-gold);
}

.lightbox-close-btn:hover svg {
  stroke: var(--color-gold);
}

/* --- Location & Attractions --- */
.location-container {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

/* Stylized interactive Map Side */
.map-visual-side {
  flex: 1.3;
  position: relative;
  background-color: var(--color-bg-rich);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-luxe);
}

/* Procedural maps styling via CSS canvas styles */
.map-canvas-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* High-end technical background lines mapping */
  background: 
    radial-gradient(circle at 75% 25%, rgba(197, 168, 128, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 25% 75%, rgba(197, 168, 128, 0.04) 0%, transparent 65%),
    linear-gradient(rgba(197,168,128,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,168,128,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-color: #0d0b0a;
}

/* Custom organic contour lines using repeating radial gradients to simulate high-end topography */
.map-topography {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  background: 
    repeating-radial-gradient(circle at 60% 40%, transparent, transparent 18px, var(--color-gold) 20px, transparent 22px),
    repeating-radial-gradient(circle at 10% 80%, transparent, transparent 28px, var(--color-gold) 30px, transparent 32px);
  pointer-events: none;
}

.map-peninsula {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 60%;
  height: 70%;
  background: linear-gradient(135deg, rgba(22, 19, 17, 0.9) 0%, rgba(35, 30, 27, 0.9) 100%);
  border: 1px dashed rgba(197,168,128,0.25);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; /* organic cliff outline */
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.map-ocean-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(197, 168, 128, 0.15);
  text-transform: uppercase;
}

/* Interactive Pins on Map */
.map-pin {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s;
}

.map-pin:hover {
  transform: scale(1.2);
}

.pin-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(197, 168, 128, 0.2), 0 0 20px var(--color-gold);
  position: relative;
}

.pin-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  animation: mapPinPulse 2s infinite ease-out;
  opacity: 0;
  pointer-events: none;
}

@keyframes mapPinPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.pin-label {
  position: absolute;
  left: 20px;
  top: -6px;
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cream);
  white-space: nowrap;
  box-shadow: var(--shadow-glass);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s, border-color 0.3s;
}

.map-pin:hover .pin-label {
  opacity: 1;
  border-color: var(--color-gold);
}

.map-pin.pin-resort .pin-dot {
  background-color: var(--color-cream);
  box-shadow: 0 0 0 8px rgba(244, 240, 235, 0.2), 0 0 30px var(--color-cream);
}
.map-pin.pin-resort .pin-pulse {
  border-color: var(--color-cream);
}

/* Custom specific pin positions on our peninsular map */
.pin-1 { top: 48%; left: 48%; } /* Sanctuary resort */
.pin-2 { top: 25%; left: 65%; } /* Sacred Cove */
.pin-3 { top: 72%; left: 32%; } /* Sentinel Lighthouse */
.pin-4 { top: 38%; left: 28%; } /* Whispering Caves */

/* Map Info Card Overlay */
.map-tooltip-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--color-bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 16px 20px;
  max-width: 260px;
  box-shadow: var(--shadow-luxe);
  z-index: 6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.map-tooltip-card.active {
  opacity: 1;
  transform: translateY(0);
}

.map-tooltip-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.map-tooltip-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-cream-dim);
}

/* Attractions List Side */
.attractions-list-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.attraction-card {
  background-color: transparent;
  border-bottom: 1px solid rgba(197, 168, 128, 0.08);
  padding-bottom: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.attraction-card:hover {
  border-bottom-color: var(--color-gold);
  transform: translateX(6px);
}

.attraction-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.attraction-name {
  font-size: 1.4rem;
  color: var(--color-cream);
  transition: var(--transition-fast);
}

.attraction-card:hover .attraction-name {
  color: var(--color-gold);
}

.attraction-dist {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.attraction-desc {
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .location-container {
    flex-direction: column;
    gap: 40px;
  }
  .map-visual-side {
    width: 100%;
    height: 400px;
  }
}

/* --- Footer --- */
footer.site-footer {
  background-color: #070605;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-cream-dim);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
}

.social-link:hover svg {
  stroke: var(--color-gold);
  transform: scale(1.1);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-cream-dim);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 280px;
}

.newsletter-input-group {
  position: relative;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 240, 235, 0.15);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 12px 35px 12px 0;
  color: var(--color-cream);
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-bottom-color: var(--color-gold);
}

.newsletter-submit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.newsletter-submit-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  transition: var(--transition-fast);
}

.newsletter-submit-btn:hover svg {
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(197, 168, 128, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--color-cream-dim);
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* --- Scroll Entrance Animations --- */
.reveal {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-fade {
  transform: translateY(0);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(40px);
}

.reveal-right {
  transform: translateX(-40px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Active State applied via JS when element enters viewport */
.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Sequencing delays for child grids */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Booking Bar Modal Validation Overlay */
.booking-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 9, 8, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow-y: auto;
  padding: 40px 0;
}

.booking-success-modal.active {
  opacity: 1;
  pointer-events: all;
}

.booking-success-card {
  background-color: var(--color-bg-rich);
  border: 1px solid var(--color-gold);
  padding: 50px 40px;
  border-radius: 4px;
  max-width: 960px;
  width: 95%;
  box-shadow: var(--shadow-luxe);
  transform: scale(0.9);
  transition: var(--transition-luxe);
  position: relative;
}

.booking-success-modal.active .booking-success-card {
  transform: scale(1);
}

.booking-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .booking-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .booking-success-card {
    padding: 30px 20px;
    margin: auto;
  }
  .booking-success-modal {
    padding: 20px 0;
  }
}

.recap-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  padding-bottom: 10px;
}

/* Recap Side Column */
.booking-recap-column {
  background-color: rgba(11, 9, 8, 0.5);
  border: 1px solid rgba(197, 168, 128, 0.1);
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.recap-suite-preview {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}

.recap-suite-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.recap-suite-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recap-suite-info span {
  font-size: 1.3rem;
  color: var(--color-cream);
  line-height: 1.2;
}

.recap-suite-info p {
  font-size: 0.8rem;
  color: var(--color-gold);
}

.recap-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recap-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-cream-dim);
}

.recap-detail-row strong {
  color: var(--color-cream);
  font-weight: 500;
}

.recap-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(197, 168, 128, 0.2);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
}

/* Addons Side Column */
.addons-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.addon-checkbox-label {
  display: block;
  position: relative;
  cursor: pointer;
}

.addon-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.addon-box-design {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(244, 240, 235, 0.02);
  border: 1px solid rgba(197, 168, 128, 0.08);
  padding: 16px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.addon-checkbox-label:hover .addon-box-design {
  border-color: rgba(197, 168, 128, 0.25);
  background-color: rgba(244, 240, 235, 0.04);
}

.addon-checkbox-label input[type="checkbox"]:checked + .addon-box-design {
  border-color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
}

.addon-details span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 2px;
}

.addon-details p {
  font-size: 0.7rem;
  color: var(--color-cream-dim);
  line-height: 1.3;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-left: 15px;
}

/* Success View Icon */
.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 20px rgba(197,168,128,0.2);
}

.success-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
}

.success-title {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.success-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Receipt Card */
.receipt-card {
  background-color: rgba(11, 9, 8, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.15);
  max-width: 500px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: var(--color-cream-dim);
}

.receipt-row strong {
  color: var(--color-cream);
}

/* Pulse highlight class for Booking Bar guidance */
@keyframes bookingBarPulse {
  0% {
    box-shadow: 0 0 100px rgba(197, 168, 128, 0.05), var(--shadow-luxe);
    border-color: var(--color-border);
  }
  50% {
    box-shadow: 0 0 40px rgba(197, 168, 128, 0.25), var(--shadow-luxe);
    border-color: var(--color-gold);
  }
  100% {
    box-shadow: 0 0 100px rgba(197, 168, 128, 0.05), var(--shadow-luxe);
    border-color: var(--color-border);
  }
}

.pulse-highlight {
  animation: bookingBarPulse 2.5s infinite ease-in-out;
}
