:root {
  /* Ultra-Premium Luxury Palette */
  --primary: #1C1C1C;
  --primary-light: #2A2A2A; 
  --accent: #B59A5A;
  --accent-light: #C8B37C;
  
  --text: #4A4A4A;
  --text-light: #7A7A7A;
  --heading: #1C1C1C;
  
  --white: #ffffff;
  --background: #FAF9F6;
  --border: #E8E5DF;
  
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.08);
  
  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-lux-cursor,
body.has-lux-cursor a,
body.has-lux-cursor button,
body.has-lux-cursor .btn-lux {
  cursor: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  margin-top: 0;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--accent);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100000;
  transform: translateY(-140%);
  border: 1px solid var(--accent);
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(181,154,90,.28);
}

/* Luxury Button Styles */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px;
  background-color: transparent;
  color: var(--primary) !important;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-lux::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-lux:hover {
  color: var(--white) !important;
  border-color: var(--primary);
}

.btn-lux:hover::before {
  transform: scaleY(1);
}

.btn-lux-light {
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-lux-light::before {
  background-color: var(--white);
}

.btn-lux-light:hover {
  color: var(--primary) !important;
}

/* ==========================================================================
   PREMIUM SCROLL ANIMATIONS
   ========================================================================== */

.lux-animate {
  opacity: 1;
  will-change: opacity, transform;
}

.lux-fade-up {
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.lux-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lux-fade-in {
  transition: opacity 1.8s ease;
}
.lux-fade-in.is-visible {
  opacity: 1;
}

.lux-slide-right {
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.lux-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.lux-img-reveal {
  transform: none;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease, clip-path 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.lux-img-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-ready .lux-animate {
  opacity: 0;
}

.reveal-ready .lux-fade-up {
  transform: translateY(34px);
}

.reveal-ready .lux-slide-right {
  transform: translateX(-28px);
}

.reveal-ready .lux-img-reveal {
  clip-path: inset(8% 8% 8% 8%);
  transform: scale(0.985);
}

.reveal-ready .lux-animate.is-visible {
  opacity: 1;
}

.reveal-ready .lux-img-reveal.is-visible {
  clip-path: inset(0);
}

/* ==========================================================================
   LUXURY POLISH & MICRO-INTERACTIONS
   ========================================================================== */

.lux-cursor {
  position: fixed;
  top: 0; left: 0; width: 40px; height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}
.lux-cursor.is-hovering {
  width: 60px; height: 60px;
  background-color: rgba(181, 154, 90, 0.1);
  border-color: transparent;
}
.lux-cursor-dot {
  position: fixed; top: 0; left: 0; width: 4px; height: 4px;
  background-color: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.lux-text-metallic {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
  color: #d3bd7d;
  display: inline-block;
}

.lux-drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 54px;
  float: left;
  line-height: 0.8;
  padding-right: 15px;
  padding-top: 10px;
  color: var(--accent);
}

.lux-rotate-slow {
  animation: lux-spin 40s linear infinite;
  transform-origin: center;
}
@keyframes lux-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   CINEMATIC PRELOADER & NOISE
   ========================================================================== */

.lux-preloader {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: var(--primary);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.5s ease-in-out, visibility 1.5s;
}
.lux-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.lux-preloader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: lux-pulse 2s infinite ease-in-out;
}
.lux-preloader__img {
  width: 140px;
  height: auto;
  object-fit: contain;
}
@keyframes lux-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

.lux-noise {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 99998;
  opacity: 0.04;
  background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

/* ==========================================================================
   OBSIDIAN LUKS TEMA (DARK MODE)
   ========================================================================== */

.theme-obsidian {
  --background: #0A0A0A;
  --primary: #FAF9F6;
  --primary-light: #F0EEE5;
  --text: #A0A0A0;
  --text-light: #7A7A7A;
  --heading: #FFFFFF;
  --border: #1F1F1F;
  --white: #000000;
}

.theme-obsidian .lux-text-metallic {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
  color: #d3bd7d;
}

.theme-obsidian .lux-hero__overlay {
  background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 30%, rgba(10,10,10,0.9) 100%);
}

.theme-obsidian .lux-services {
  background-color: var(--background);
}

.theme-obsidian .lux-service-row:hover {
  background-color: #111111;
}

.theme-obsidian .site-footer,
.theme-obsidian .lux-concierge__inner {
  background-color: #050505;
  border-color: #1A1A1A;
}

.theme-obsidian .lux-concierge {
  background-color: var(--background);
}

.theme-obsidian .btn-lux {
  border-color: var(--primary);
  color: var(--primary) !important;
}
.theme-obsidian .btn-lux::before {
  background-color: var(--primary);
}
.theme-obsidian .btn-lux:hover {
  color: var(--white) !important;
}

.js:not(.reveal-ready) .lux-animate {
  opacity: 1;
}

.js:not(.reveal-ready) .lux-fade-up,
.js:not(.reveal-ready) .lux-img-reveal {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lux-animate,
  .lux-fade-up,
  .lux-img-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lux-rotate-slow,
  .lux-scroll-line::after,
  .lux-hero__bg img {
    animation: none !important;
  }
}
