/* =============================================
   LOTUS MASAJES - LUXURY THEME
   Inspired by Aman / Faena aesthetic
   ============================================= */

/* --- DIGIT-1 OVERRIDE: Cormorant's "1" looks like an I. Swap only U+0031 to Georgia. --- */
@font-face {
  font-family: 'DigitFix';
  src: local('Georgia'), local('Times New Roman'), local('Times');
  unicode-range: U+0031;
}

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

:root {
  --color-bg: #FAFAF7;
  --color-bg-alt: #F5F0EB;
  --color-bg-dark: #2C2C2C;
  --color-bg-warm: #EDE8E2;
  --color-text: #3A3A3A;
  --color-text-light: #7A7A7A;
  --color-text-dark: #1A1A1A;
  --color-accent: #B8A088;
  --color-accent-light: #D4C4AE;
  --color-gold: #C5A880;
  --color-white: #FFFFFF;
  --color-border: #E0DBD4;
  --color-overlay: rgba(28, 28, 28, 0.45);

  --font-heading: 'DigitFix', 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DigitFix', 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'DigitFix', 'Cormorant', serif;

  --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

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

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

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

p {
  margin-bottom: 1.2em;
  font-size: 0.95rem;
}

ul { list-style: none; }

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; }
.text-upper-lg { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.65rem; font-weight: 400; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.section-spacer { padding: 100px 0; }
.section-spacer-sm { padding: 60px 0; }
.section-spacer-lg { padding: 140px 0; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px auto;
}

.divider-left {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px 0;
}

/* --- PRELOADER --- */
.lx-preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.lx-preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

.lx-preloader-spinner {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- NAVIGATION (always white background, hero overlap kept) --- */
.lx-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-border);
  transition: var(--transition);
}

.lx-nav .lx-nav-link,
.lx-nav .lx-nav-logo-text {
  color: var(--color-text);
}

.lx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.lx-nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.lx-nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
}

.lx-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.lx-nav-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.lx-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition);
}

.lx-nav-link:hover::after {
  width: 100%;
}

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

/* Dropdown */
.lx-nav-dropdown {
  position: relative;
}

.lx-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--color-white);
  min-width: 240px;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 1px solid var(--color-accent);
}

.lx-nav-dropdown:hover .lx-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lx-nav-dropdown-menu a {
  display: block;
  padding: 8px 28px;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text);
}

.lx-nav-dropdown-menu a:hover {
  color: var(--color-accent);
  padding-left: 34px;
}

/* CTA Button in nav */
.lx-nav-cta {
  font-size: 0.65rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 10px 24px !important;
  border: 1px solid var(--color-accent);
  color: var(--color-text) !important;
  transition: var(--transition);
}

.lx-nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent) !important;
}

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

/* Mobile menu */
.lx-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.lx-mobile-toggle span {
  width: 24px;
  height: 1px;
  background: var(--color-text-dark);
  transition: var(--transition);
}

/* Mobile overlay menu */
.lx-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  z-index: 10000;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.lx-mobile-menu.active {
  right: 0;
}

.lx-mobile-close {
  position: absolute;
  top: 28px; right: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-text);
  background: none;
  border: none;
  font-weight: 200;
}

.lx-mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 7px 0;
  display: block;
  text-align: center;
  color: var(--color-text-dark);
}

.lx-mobile-menu a:hover {
  color: var(--color-accent);
}

.lx-mobile-submenu {
  display: none;
  text-align: center;
}

/* Mobile accordion groups */
.lx-mobile-group {
  width: 100%;
  text-align: center;
}

.lx-mobile-group-toggle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 7px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-dark);
  text-align: center;
}

.lx-mobile-group-toggle:hover {
  color: var(--color-accent);
}

.lx-mobile-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.lx-mobile-group.open .lx-mobile-arrow {
  transform: rotate(180deg);
}

.lx-mobile-group-items {
  display: none;
  padding: 4px 0 10px;
}

.lx-mobile-group.open .lx-mobile-group-items {
  display: block;
}

.lx-mobile-group-items a {
  font-size: 1.05rem !important;
  padding: 5px 0 !important;
  opacity: 0.75;
}

.lx-mobile-group-items a:hover {
  opacity: 1;
}

.lx-mobile-submenu a {
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 6px 0;
}

.lx-mobile-submenu.active {
  display: block;
}

/* --- HERO --- */
.lx-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.lx-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-overlay);
}

.lx-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  padding: 0 24px;
}

.lx-hero-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  font-weight: 400;
  opacity: 0.9;
}

.lx-hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.lx-hero-text {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* --- PAGE HERO (inner pages) --- */
.lx-page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-page-hero .lx-hero-title {
  font-size: 3rem;
}

/* breadcrumb */
.lx-breadcrumb {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.lx-breadcrumb a,
.lx-breadcrumb span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}

.lx-breadcrumb a:hover { color: var(--color-white); }
.lx-breadcrumb .sep { margin: 0 10px; }

/* --- BUTTONS --- */
.lx-btn {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  padding: 14px 36px;
  border: 1px solid var(--color-accent);
  color: var(--color-text-dark);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.lx-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.lx-btn-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

.lx-btn-light:hover {
  background: var(--color-white);
  color: var(--color-text-dark);
  border-color: var(--color-white);
}

.lx-btn-solid {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.lx-btn-solid:hover {
  background: var(--color-text-dark);
  border-color: var(--color-text-dark);
  color: var(--color-white);
}

.lx-btn-sm {
  padding: 10px 24px;
  font-size: 0.6rem;
}

/* --- SECTION TITLES --- */
.lx-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.lx-section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 400;
}

.lx-section-title {
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.lx-section-text {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.lx-service-card {
  background: var(--color-white);
  overflow: hidden;
  transition: var(--transition);
}

.lx-service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.lx-service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.lx-service-card:hover .lx-service-card-img img {
  transform: scale(1.04);
}

.lx-service-card-body {
  padding: 32px 28px;
}

.lx-service-card-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.lx-service-card-title a {
  color: var(--color-text-dark);
}

.lx-service-card-title a:hover {
  color: var(--color-accent);
}

.lx-service-card-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.lx-service-card-link {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.lx-service-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

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

/* --- SPLIT SECTION (image + text side by side) --- */
.lx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.lx-split-reverse {
  direction: rtl;
}

.lx-split-reverse > * {
  direction: ltr;
}

.lx-split-img {
  overflow: hidden;
}

.lx-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lx-split:hover .lx-split-img img {
  transform: scale(1.03);
}

.lx-split-content {
  display: flex;
  align-items: center;
  padding: 80px 80px;
}

.lx-split-inner {
  max-width: 480px;
}

.lx-split-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 400;
}

.lx-split-title {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}

.lx-split-text {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* --- FULL-WIDTH BANNER / PARALLAX --- */
.lx-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.lx-banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(20, 20, 20, 0.5);
}

.lx-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 24px;
}

.lx-banner-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 16px;
}

.lx-banner-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-bottom: 12px;
}

.lx-banner-text {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 32px;
}

.lx-banner-items {
  margin-bottom: 32px;
}

.lx-banner-items p {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-weight: 300;
  opacity: 0.9;
}

.lx-banner-items .plus {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 4px 0;
}

/* --- WELLNESS SECTION --- */
.lx-wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.lx-wellness-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.lx-wellness-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.lx-wellness-card-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
  transition: var(--transition);
}

.lx-wellness-card:hover .lx-wellness-card-overlay {
  background: rgba(0,0,0,0.2);
}

.lx-wellness-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: var(--color-white);
}

.lx-wellness-card h4 {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 10px;
}

.lx-wellness-card p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* --- ABOUT / PHILOSOPHY --- */
.lx-about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.lx-value-item h5 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.lx-value-item p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- LIST STYLE --- */
.lx-list {
  margin-bottom: 24px;
}

.lx-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.lx-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* --- TESTIMONIALS --- */
.lx-testimonials {
  background: var(--color-bg-alt);
}

/* --- HOTEL KRISTA SECTION --- */
.lx-hotel-section {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.lx-hotel-section .lx-split-content {
  background: var(--color-bg-dark);
}

.lx-hotel-section .lx-split-title {
  color: var(--color-white);
}

.lx-hotel-section .lx-split-text {
  color: rgba(255,255,255,0.7);
}

.lx-hotel-section .lx-split-label {
  color: var(--color-gold);
}

/* --- MASAJES DETAIL PAGE --- */
.lx-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.lx-detail-service {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

.lx-detail-service:last-child {
  border-bottom: none;
}

.lx-detail-service h4 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.lx-detail-service p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* --- SIDEBAR --- */
.lx-sidebar {
  position: sticky;
  top: 120px;
}

.lx-sidebar-block {
  margin-bottom: 40px;
  padding: 32px;
  background: var(--color-white);
}

.lx-sidebar-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 400;
}

.lx-sidebar p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

/* --- FAQ ACCORDION --- */
.lx-faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.lx-faq-question {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lx-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--color-accent);
  transition: var(--transition);
}

.lx-faq-item.active .lx-faq-question::after {
  content: '\2212';
}

.lx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.lx-faq-item.active .lx-faq-answer {
  max-height: 500px;
}

.lx-faq-answer p {
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- CONTACT --- */
.lx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.lx-contact-info h5 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 8px;
  margin-top: 24px;
  font-weight: 400;
  font-family: var(--font-body);
}

.lx-contact-info h5:first-child { margin-top: 0; }

.lx-contact-info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.lx-contact-info a {
  color: var(--color-text-light);
}

.lx-contact-info a:hover {
  color: var(--color-accent);
}

/* --- GALLERY --- */
.lx-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.lx-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.lx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

/* --- FOOTER --- */
.lx-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.lx-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.lx-footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
}

.lx-footer-logo {
  margin-bottom: 16px;
}

.lx-footer-logo img {
  width: 50%;
  height: auto;
  margin: 0 auto;
  opacity: 0.8;
}

.lx-footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  white-space: nowrap;
  text-align: center;
}

.lx-footer h6 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--font-body);
}

.lx-footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.lx-footer a:hover {
  color: var(--color-white);
}

.lx-footer ul li {
  margin-bottom: 8px;
}

.lx-footer p {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.lx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.lx-footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.lx-footer-bottom a:hover {
  color: var(--color-white);
}

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

/* --- WHATSAPP FLOAT --- */
.lx-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.4rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(184, 160, 136, 0.35);
}

.lx-whatsapp:hover {
  transform: scale(1.08);
  color: var(--color-white);
  background: var(--color-text-dark);
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.35);
}

/* --- BLOG CARDS --- */
.lx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lx-blog-card {
  background: var(--color-white);
}

.lx-blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.lx-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.lx-blog-card:hover .lx-blog-card-img img {
  transform: scale(1.04);
}

.lx-blog-card-body {
  padding: 28px;
}

.lx-blog-card-date {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.lx-blog-card-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.lx-blog-card-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- GIFT CARDS --- */
.lx-gift-section {
  background: var(--color-bg-alt);
}

/* --- TERMS --- */
.lx-terms h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  margin-top: 40px;
}

.lx-terms h4:first-child { margin-top: 0; }

.lx-terms p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.lx-terms ol {
  list-style: decimal;
  padding-left: 20px;
}

.lx-terms ol li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- PREMIUM HOVER EFFECTS --- */

/* Hero parallax-like subtle zoom */
.lx-hero-img {
  transition: transform 20s ease-out;
}

.lx-hero:hover .lx-hero-img {
  transform: scale(1.05);
}

/* Service card refined lift */
.lx-service-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lx-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.07);
}

.lx-service-card-img img {
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lx-service-card:hover .lx-service-card-img img {
  transform: scale(1.06);
}

/* Gallery item refined zoom */
.lx-gallery-item img {
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1),
              filter 0.6s ease;
}

.lx-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Wellness card overlay transition */
.lx-wellness-card img {
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lx-wellness-card:hover img {
  transform: scale(1.06);
}

/* Banner parallax image */
.lx-banner {
  background-attachment: fixed;
}

/* Blog cards */
.lx-blog-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lx-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Button hover glow */
.lx-btn {
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.4s ease;
}

.lx-btn:hover {
  box-shadow: 0 4px 20px rgba(184, 160, 136, 0.25);
}

.lx-btn-light:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Smooth image reveal for detail pages */
.lx-detail-service {
  transition: opacity 0.3s ease;
}

/* Footer link underline animation */
.lx-footer a {
  position: relative;
}

.lx-footer ul a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.lx-footer ul a:hover::after {
  width: 100%;
}

/* Sidebar subtle border accent */
.lx-sidebar-block {
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.lx-sidebar-block:hover {
  border-left-color: var(--color-accent);
}

/* --- ANIMATIONS --- */
.lx-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lx-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered fade for grids */
.lx-services-grid .lx-fade-in:nth-child(2) { transition-delay: 0.1s; }
.lx-services-grid .lx-fade-in:nth-child(3) { transition-delay: 0.2s; }
.lx-services-grid .lx-fade-in:nth-child(4) { transition-delay: 0.1s; }
.lx-services-grid .lx-fade-in:nth-child(5) { transition-delay: 0.2s; }
.lx-services-grid .lx-fade-in:nth-child(6) { transition-delay: 0.3s; }

/* --- VIDEO HERO --- */
.lx-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.lx-hero-video-crop {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center 70%;
}

/* --- LIGHTBOX --- */
.lx-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lx-lightbox.active {
  display: flex;
  opacity: 1;
}

.lx-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lx-lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-style: italic;
  text-align: center;
  max-width: 500px;
}

.lx-lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  font-weight: 200;
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.lx-lightbox-close:hover {
  color: white;
}

.lx-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 20px;
  transition: color 0.3s ease;
  background: none;
  border: none;
  font-weight: 200;
}

.lx-lightbox-nav:hover { color: white; }
.lx-lightbox-prev { left: 20px; }
.lx-lightbox-next { right: 20px; }

/* Gallery with captions */
.lx-gallery-item {
  position: relative;
}

.lx-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lx-gallery-item:hover .lx-gallery-caption {
  opacity: 1;
}

/* Gallery clean grid layout */
.lx-gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.lx-gallery-grid-v2 .lx-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.lx-gallery-grid-v2 .lx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.6s ease;
}

.lx-gallery-grid-v2 .lx-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Blog article page */
.lx-article {
  max-width: 720px;
  margin: 0 auto;
}

.lx-article h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 40px 0 16px;
}

.lx-article p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

.lx-article-meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 24px;
}

/* --- TAGS --- */
.lx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.lx-tag {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  transition: var(--transition);
  text-decoration: none;
}

.lx-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(184, 160, 136, 0.05);
}

/* Related content links */
.lx-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.lx-related-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 400;
}

.lx-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lx-related-card {
  display: block;
  padding: 20px;
  background: var(--color-bg-alt);
  text-decoration: none;
  transition: var(--transition);
}

.lx-related-card:hover {
  background: var(--color-bg-warm);
}

.lx-related-card h5 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.lx-related-card p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .lx-related-grid { grid-template-columns: 1fr; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .lx-nav-links { display: none; }
  .lx-mobile-toggle { display: flex; }

  .lx-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lx-split { grid-template-columns: 1fr; }
  .lx-split-content { padding: 60px 40px; }
  .lx-split-reverse { direction: ltr; }

  .lx-detail-layout { grid-template-columns: 1fr; }
  .lx-sidebar { position: static; }

  .lx-hero-title { font-size: 2.8rem; }
  .lx-section-title { font-size: 2rem; }

  .lx-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .lx-contact-grid { grid-template-columns: 1fr; }
  .lx-about-values { grid-template-columns: 1fr; gap: 30px; }
  .lx-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lx-gallery-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .lx-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lx-hero-video { object-position: center 40%; }
  .lx-hero { min-height: 100vh; }
  .lx-hero-content { padding: 0 20px; opacity: 1 !important; transform: none !important; z-index: 5; }
  .lx-hero-overlay { background: rgba(20, 20, 20, 0.55); }
  .lx-services-grid { grid-template-columns: 1fr; gap: 24px; }
  .lx-services-grid .lx-service-card-img { aspect-ratio: 16/10; }
  .lx-wellness-grid { grid-template-columns: 1fr; }
  .lx-hero-title { font-size: 2.2rem; }
  .lx-page-hero .lx-hero-title { font-size: 2rem; }
  .lx-section-title { font-size: 1.8rem; }
  .lx-split-content { padding: 48px 24px; }
  .lx-banner-title { font-size: 2rem; }
  .lx-banner { min-height: 400px; background-attachment: scroll; }
  .lx-banner + .lx-banner,
  section + .lx-banner { margin-top: 24px; }
  .lx-banner { margin-bottom: 24px; }
  .lx-footer-grid { grid-template-columns: 1fr; }
  .lx-gallery-grid { grid-template-columns: 1fr; }
  .lx-gallery-grid-v2 { grid-template-columns: 1fr; }
  .lx-blog-grid { grid-template-columns: 1fr; }
  .lx-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .lx-nav { padding: 20px 0; }
  .lx-nav-inner { padding: 0 20px; }
  .lx-nav-logo img { height: 52px; }
  .container-wide { padding: 0 20px; }

  .lx-mobile-menu a { font-size: 1.2rem; padding: 5px 0; }
  .lx-mobile-group-toggle { font-size: 1.2rem; }
  .lx-mobile-group-items a { font-size: 0.95rem !important; }

  /* Prevent any image deformation: enforce intrinsic ratio */
  img { max-width: 100%; height: auto; }
  .lx-service-card-img img,
  .lx-split-img img,
  .lx-blog-card-img img,
  .lx-gallery-item img,
  .lx-wellness-card img { width: 100%; height: 100%; object-fit: cover; }

  .lx-whatsapp { bottom: 18px; right: 18px; width: 48px; height: 48px; }
}

@media (max-width: 420px) {
  .lx-hero-title { font-size: 1.9rem; }
  .lx-page-hero .lx-hero-title { font-size: 1.7rem; }
  .lx-hero-text { font-size: 0.9rem; }
  .lx-section-title { font-size: 1.6rem; }
  .lx-banner-title { font-size: 1.7rem; }
  .lx-split-content { padding: 36px 20px; }
  .lx-nav-logo img { height: 46px; }
  .container, .container-narrow { padding: 0 18px; }
}
