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

:root {
  --cream: #FFF8F0;
  --beige: #F5E6D3;
  --warm-brown: #C4A882;
  --dark-brown: #8B7355;
  --gold: #D4A853;
  --light-gold: #E8C98E;
  --soft-gray: #F0EDE8;
  --medium-gray: #5c534d; /* Refined dark neutral for better readability on light backgrounds */
  --body-text: #4f4742;  /* Richer warm-dark neutral for main body text */
  --text: #4f4742;       /* Compatibility for legacy selectors */
  --dark: #2C2826;
  --white: #FFFFFF;
  --black: #1A1817;
  --glass-bg: rgba(255, 248, 240, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 2px 20px rgba(44, 40, 38, 0.06);
  --shadow-md: 0 8px 40px rgba(44, 40, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(44, 40, 38, 0.12);
  --shadow-gold: 0 8px 40px rgba(212, 168, 83, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1200px;
  --header-height: 90px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--dark);
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 7vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

p { 
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8; 
  color: var(--body-text);
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 25px;
  position: relative;
  line-height: 1.1;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .section-title br {
    display: none;
  }
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 30px;
}

.text-center .section-divider {
  margin: 20px auto 30px;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark-brown);
  letter-spacing: 6px;
  margin-bottom: 30px;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-progress {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 3.5vw, 1.6rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1.2;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
  color: var(--dark);
}

.navbar-brand span {
  color: var(--gold);
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--dark);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--dark-brown);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navbar Responsive */
@media (max-width: 768px) {
  .navbar-brand {
    letter-spacing: 2px;
  }
  .navbar .container {
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    letter-spacing: 1.5px;
  }
  .navbar {
    padding: 15px 0;
  }
  .navbar.scrolled {
    padding: 10px 0;
  }
}

@media (max-width: 400px) {
  .navbar-brand {
    letter-spacing: 1px;
  }
  .navbar {
    padding: 12px 0;
  }
  .hamburger span {
    width: 24px;
  }
}

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--dark);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active::before {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 24, 23, 0.7) 0%, rgba(44, 40, 38, 0.4) 50%, rgba(26, 24, 23, 0.6) 100%);
  z-index: 2;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .hero-title {
    white-space: nowrap;
  }
  .hero-title br {
    display: none;
  }
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-brown);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--dark);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--dark-brown);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
}

/* Slider Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.hero-slider-dots .dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.4);
}

.hero-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* Welcome Section */
.welcome {
  background: var(--white);
  overflow: hidden;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}

.welcome-content .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.welcome-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 25px;
}

.welcome-signature {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold);
  font-style: italic;
  margin-top: 40px;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .welcome-signature {
    white-space: normal;
    line-height: 1.6;
  }
}

/* Services Section */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 24, 23, 0.4), transparent);
}

.service-card-body {
  padding: 30px;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: var(--soft-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--soft-gray);
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

.service-card-duration {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* Why Choose Us */
.why-choose {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--soft-gray);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.feature-card:hover h4,
.feature-card:hover p {
  color: var(--white);
}

.feature-card p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--body-text);
  line-height: 1.6;
  transition: var(--transition);
}

/* Testimonials */
.testimonials {
  background: var(--soft-gray);
  position: relative;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--beige);
  background: var(--white);
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Team Section */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}



.team-info {
  padding: 25px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Pricing Section */
.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
  color: var(--white);
}

.pricing-card.featured .pricing-btn {
  background: var(--gold);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(45deg);
}

.pricing-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 15px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-gray);
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: var(--soft-gray);
  color: var(--dark);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* CTA Banner */
.cta-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 24, 23, 0.8), rgba(44, 40, 38, 0.6));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #E3DFDA; /* Improved contrast warm neutral */
  padding: var(--section-padding) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  white-space: nowrap !important;
}

.footer-brand span {
  color: var(--gold);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #E3DFDA;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
  font-size: 0.85rem;
  white-space: nowrap !important;
  display: block;
}

/* Luxury Hours Section - Borderless */
.footer-hours-luxury {
  padding: 10px 0;
  transition: var(--transition);
  height: 100%;
}

.footer-hours-luxury:hover {
  transform: translateX(5px);
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hours-header i {
  color: var(--gold);
  font-size: 1rem;
}

.hours-header h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 1px;
}

.hours-divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: 0.5;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-item {
  margin-bottom: 15px;
}

.hours-item:last-child {
  margin-bottom: 0;
}

.hours-day {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 2px;
  font-weight: 500;
  display: block;
}

.hours-time {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

/* Light Variation for Cards - Borderless */
.card-hours-luxury {
  padding: 20px;
  text-align: center;
}

.card-hours-luxury .hours-header {
  justify-content: center;
}

.card-hours-luxury .hours-divider {
  margin-left: auto;
  margin-right: auto;
}

.card-hours-luxury .hours-time {
  color: var(--dark);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #E3DFDA;
}



.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: #E3DFDA;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  left: auto;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--dark-brown);
  transform: translateY(-3px);
}

/* About Page Specific */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 24, 23, 0.8), rgba(44, 40, 38, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero-content p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
  color: var(--gold);
}

/* Wave Canvas */
#wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Stats Section */
.stats-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

/* Timeline */
.timeline-section {
  background: var(--white);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--beige);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 40px 0;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  align-self: flex-start;
  justify-content: flex-start;
  left: 0;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
  left: auto;
}

.timeline-content {
  background: var(--soft-gray);
  padding: 30px;
  border-radius: 15px;
  max-width: 320px;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--body-text);
  line-height: 1.6;
}

/* Services Page */
.services-page {
  background: var(--cream);
}

.service-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--beige);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--soft-gray);
  background: transparent;
  margin-bottom: 0;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-button:hover {
  color: var(--gold);
}

.accordion-button::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Booking Form */
.booking-form {
  background: var(--white);
  padding: 50px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--body-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--soft-gray);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--body-text);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Gallery Page */
.gallery-section {
  background: var(--cream);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 23, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: 15px;
}

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

.gallery-overlay-icon {
  width: 55px;
  height: 55px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0);
}

.gallery-overlay-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-title {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Three.js Gallery Container */
#three-gallery-container {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: var(--soft-gray);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Form status messages */
.form-status {
  display: none;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
  border: 1px solid rgba(244, 67, 54, 0.2);
}

/* Image placeholders */
.placeholder-img {
  background: linear-gradient(135deg, var(--beige), var(--soft-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-family: var(--font-serif);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 992px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    gap: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--dark) !important;
    font-size: 0.9rem;
  }

  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline::before { left: 30px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 60px;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-dot {
    left: 22px;
    right: auto;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { height: 50vh; min-height: 400px; }
}

@media (max-width: 768px) {
  .section-padding { padding: clamp(50px, 8vw, 80px) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .booking-form { padding: 30px 20px; }
  .hero-slider-dots { bottom: 90px; gap: 10px; }
  .hero-slider-dots .dot { width: 8px; height: 8px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .welcome-image img { height: 400px; }
  .cta-banner { height: 400px; }
  .welcome-image::before { display: none; }
  .page-hero { height: 40vh; min-height: 350px; }
  #three-gallery-container { height: 400px; }
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .footer-brand { white-space: normal; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.5rem; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
}

[data-audio-player] {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: rgba(26, 24, 23, 0.85);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 50px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}
[data-audio-player]:hover {
  border-color: var(--gold);
  background: var(--dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.audio-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 11px;
}
.audio-btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.audio-btn.playing {
  animation: audioPulse 1.5s ease-in-out infinite;
  border-color: var(--light-gold);
  color: var(--light-gold);
}
.audio-btn.playing:hover {
  background: var(--gold);
  color: var(--dark);
}
@keyframes audioPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,83,0); }
}
.audio-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.audio-label {
  font-size: 11px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.audio-title {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-weight: 400;
  white-space: nowrap;
}
.audio-visualizer {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
  padding-right: 8px;
}
.audio-visualizer span {
  display: block;
  width: 3px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  transition: height 0.3s ease;
}
.audio-visualizer.active span {
  animation: audioBar 0.8s ease-in-out infinite alternate;
}
.audio-visualizer.active span:nth-child(1) { animation-delay: 0s; }
.audio-visualizer.active span:nth-child(2) { animation-delay: 0.15s; }
.audio-visualizer.active span:nth-child(3) { animation-delay: 0.3s; }
.audio-visualizer.active span:nth-child(4) { animation-delay: 0.45s; }
.audio-visualizer.active span:nth-child(5) { animation-delay: 0.6s; }
@keyframes audioBar {
  0% { height: 3px; }
  100% { height: 12px; }
}
@media (max-width: 480px) {
  [data-audio-player] {
    bottom: 10px;
    left: 10px;
    padding: 4px;
    gap: 6px;
  }
  .audio-title { font-size: 10px; }
  .audio-label { font-size: 9px; }
  .audio-visualizer { display: none; }
}
