/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0a0a;
  color: #f0ece4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ===================== CUSTOM CURSOR ===================== */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
.cursor-dot {
  width: 8px; height: 8px; background: #c9a567; border-radius: 50%;
  transform: translate(-50%, -50%); transition: transform 0.1s ease;
}
.cursor-ring {
  width: 40px; height: 40px; border: 1px solid rgba(201,165,103,0.6); border-radius: 50%;
  transform: translate(-50%, -50%); position: absolute; top: 0; left: 0;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.cursor-ring.hovered { width: 60px; height: 60px; border-color: #c9a567; background: rgba(201,165,103,0.07); }

/* ===================== CSS VARIABLES ===================== */
:root {
  --gold: #c9a567; --gold-light: #e8d5a3; --gold-dark: #9a7a3f;
  --black: #0a0a0a; --dark: #111111; --dark2: #1a1a1a;
  --cream: #f8f4ed; --white: #fefefe;
  --text-muted: rgba(240,236,228,0.55);
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===================== GOLD SHIMMER ===================== */
.gold-text {
  background: linear-gradient(120deg, #c9a567 0%, #f5e6a3 40%, #c9a567 60%, #9a7a3f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ===================== UTILITIES ===================== */
.section-label { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:600; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; display:block; }
.gold-line { display:flex; align-items:center; gap:16px; margin:20px 0 40px; }
.gold-line::before,.gold-line::after { content:''; flex:1; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.gold-line span { width:6px; height:6px; background:var(--gold); border-radius:50%; display:block; }

/* ===================== BUTTONS ===================== */
.btn-gold {
  display:inline-flex; align-items:center; gap:12px; padding:16px 44px;
  border:1px solid var(--gold); color:var(--gold); font-family:'Montserrat',sans-serif;
  font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase;
  position:relative; overflow:hidden; transition:color 0.4s ease; cursor:none;
}
.btn-gold::before { content:''; position:absolute; inset:0; background:var(--gold); transform:translateX(-101%); transition:transform 0.4s cubic-bezier(0.77,0,0.175,1); z-index:0; }
.btn-gold:hover { color:var(--black); }
.btn-gold:hover::before { transform:translateX(0); }
.btn-gold span { position:relative; z-index:1; }
.btn-outline { display:inline-flex; align-items:center; gap:12px; padding:16px 44px; border:1px solid rgba(255,255,255,0.3); color:var(--white); font-family:'Montserrat',sans-serif; font-size:11px; font-weight:500; letter-spacing:3px; text-transform:uppercase; transition:all 0.4s ease; cursor:none; }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ===================== NAVBAR ===================== */
nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:30px 60px; display:flex; align-items:center; justify-content:space-between; transition:all 0.5s ease; }
nav.scrolled { padding:18px 60px; background:rgba(10,10,10,0.96); border-bottom:1px solid rgba(201,165,103,0.15); backdrop-filter:blur(20px); }
.nav-logo { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; letter-spacing:6px; text-transform:uppercase; color:var(--white); cursor:none; }
.nav-logo span { color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:44px; list-style:none; }
.nav-links a { font-size:11px; font-weight:500; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,0.75); position:relative; padding-bottom:4px; transition:color 0.3s; cursor:none; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:width 0.35s ease; }
.nav-links a:hover { color:var(--gold); }
.nav-links a:hover::after { width:100%; }
.nav-book { padding:12px 30px!important; border:1px solid var(--gold)!important; color:var(--gold)!important; font-size:10px!important; letter-spacing:3px!important; transition:all 0.3s ease!important; }
.nav-book:hover { background:var(--gold)!important; color:var(--black)!important; }
.nav-book::after { display:none!important; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:6px; cursor:none; padding:4px; z-index:1002; }
.hamburger span { display:block; width:28px; height:1.5px; background:var(--white); transition:all 0.4s ease; transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position:fixed; inset:0; z-index:1001;
  background:rgba(10,10,10,0.98);
  backdrop-filter:blur(30px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:0;
  opacity:0; visibility:hidden;
  transition:opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu-links { list-style:none; text-align:center; }
.mobile-menu-links li { overflow:hidden; }
.mobile-menu-links a {
  display:block; padding:18px 40px;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(36px,8vw,60px); font-weight:300; letter-spacing:4px;
  color:rgba(255,255,255,0.7);
  transition:color 0.3s; cursor:none;
  transform:translateY(40px); opacity:0;
  transition:transform 0.5s ease, opacity 0.5s ease, color 0.3s;
}
.mobile-menu.open .mobile-menu-links a { transform:translateY(0); opacity:1; }
.mobile-menu-links li:nth-child(1) a { transition-delay:0.1s; }
.mobile-menu-links li:nth-child(2) a { transition-delay:0.15s; }
.mobile-menu-links li:nth-child(3) a { transition-delay:0.2s; }
.mobile-menu-links li:nth-child(4) a { transition-delay:0.25s; }
.mobile-menu-links li:nth-child(5) a { transition-delay:0.3s; }
.mobile-menu-links li:nth-child(6) a { transition-delay:0.35s; }
.mobile-menu-links a:hover { color:var(--gold); }
.mobile-menu-footer { margin-top:50px; text-align:center; opacity:0; transition:opacity 0.5s ease 0.4s; }
.mobile-menu.open .mobile-menu-footer { opacity:1; }
.mobile-menu-footer p { font-size:11px; letter-spacing:3px; color:var(--text-muted); text-transform:uppercase; }

/* ===================== HERO ===================== */
#hero { position:relative; height:100vh; min-height:700px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:0; background-image:url('https://images.unsplash.com/photo-1560066263-88b537e9e31a?auto=format&fit=crop&w=1920&q=90'); background-size:cover; background-position:center; transform:scale(1.08); animation:heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { 0% { transform:scale(1.08) translateY(0); } 100% { transform:scale(1.15) translateY(-2%); } }
/* VIDEO HERO */
.hero-video { position:absolute; inset:0; z-index:1; overflow:hidden; }
.hero-video video { width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 1.5s ease; }
.hero-video video.loaded { opacity:1; }
.hero-overlay { position:absolute; inset:0; z-index:2; background:linear-gradient(to bottom,rgba(10,10,10,0.45) 0%,rgba(10,10,10,0.25) 40%,rgba(10,10,10,0.65) 80%,rgba(10,10,10,0.95) 100%); }
.particles { position:absolute; inset:0; z-index:3; pointer-events:none; overflow:hidden; }
.particle { position:absolute; width:2px; height:2px; background:var(--gold); border-radius:50%; opacity:0; animation:floatParticle var(--dur,8s) linear infinite; animation-delay:var(--delay,0s); }
@keyframes floatParticle { 0%{opacity:0;transform:translateY(100vh) scale(0);} 10%{opacity:0.8;} 90%{opacity:0.4;} 100%{opacity:0;transform:translateY(-10vh) scale(1.5);} }
.hero-content { position:relative; z-index:4; text-align:center; padding:0 20px; }
.hero-eyebrow { font-size:11px; font-weight:500; letter-spacing:8px; text-transform:uppercase; color:var(--gold); opacity:0; animation:fadeUp 1s ease 0.3s forwards; }
.hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(72px,10vw,140px); font-weight:300; line-height:0.9; letter-spacing:-2px; color:var(--white); margin:20px 0; opacity:0; animation:fadeUp 1.2s ease 0.6s forwards; }
.hero-title em { font-style:italic; color:var(--gold-light); }
.hero-subtitle { font-family:'Cormorant Garamond',serif; font-size:clamp(16px,2.5vw,22px); font-style:italic; font-weight:300; color:rgba(240,236,228,0.7); letter-spacing:2px; margin-bottom:50px; opacity:0; animation:fadeUp 1s ease 1s forwards; }
.hero-cta { display:flex; align-items:center; justify-content:center; gap:24px; opacity:0; animation:fadeUp 1s ease 1.3s forwards; flex-wrap:wrap; }
.hero-scroll { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); z-index:4; display:flex; flex-direction:column; align-items:center; gap:12px; font-size:9px; letter-spacing:4px; text-transform:uppercase; color:rgba(255,255,255,0.5); animation:fadeIn 1s ease 2s forwards; opacity:0; }
.scroll-line { width:1px; height:60px; background:linear-gradient(to bottom,var(--gold),transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(0.6);opacity:0.4;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ===================== MARQUEE ===================== */
.marquee-strip { background:var(--gold); padding:16px 0; overflow:hidden; white-space:nowrap; }
.marquee-track { display:inline-flex; animation:marquee 30s linear infinite; }
.marquee-item { display:inline-flex; align-items:center; gap:24px; padding:0 30px; font-size:11px; font-weight:600; letter-spacing:4px; text-transform:uppercase; color:var(--black); }
.marquee-dot { width:5px; height:5px; background:var(--black); border-radius:50%; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ===================== ABOUT ===================== */
#about { padding:140px 60px; display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center; max-width:1400px; margin:0 auto; }
.about-image-wrapper { position:relative; }
.about-img-main { width:100%; height:620px; object-fit:cover; border:1px solid rgba(201,165,103,0.2); }
.about-img-accent { position:absolute; bottom:-40px; right:-40px; width:240px; height:300px; border:4px solid var(--black); object-fit:cover; box-shadow:0 0 0 1px rgba(201,165,103,0.3); }
.about-badge { position:absolute; top:-30px; left:-30px; width:120px; height:120px; background:var(--gold); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; animation:rotateBadge 20s linear infinite; }
.about-badge-num { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:600; color:var(--black); line-height:1; }
.about-badge-text { font-size:8px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--black); }
@keyframes rotateBadge { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }
.about-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(38px,4vw,56px); font-weight:400; line-height:1.1; margin-bottom:30px; }
.about-text h2 em { font-style:italic; color:var(--gold); }
.about-text p { font-size:14px; line-height:2; color:var(--text-muted); margin-bottom:20px; }
.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin:50px 0; border-top:1px solid rgba(201,165,103,0.2); padding-top:40px; }
.stat-item { text-align:center; }
.stat-num { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; color:var(--gold); line-height:1; }
.stat-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); margin-top:8px; }

/* ===================== SERVICES ===================== */
#services { padding:120px 60px; background:var(--dark); }
.section-header { text-align:center; max-width:600px; margin:0 auto 80px; }
.section-header h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,4vw,54px); font-weight:400; line-height:1.1; margin-bottom:20px; }
.section-header p { font-size:14px; color:var(--text-muted); line-height:1.9; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; max-width:1300px; margin:0 auto; }
.service-card { position:relative; overflow:hidden; height:480px; cursor:none; }
.service-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.service-card:hover img { transform:scale(1.1); }
.service-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,10,10,0.92) 0%,rgba(10,10,10,0.3) 50%,rgba(10,10,10,0.1) 100%); transition:background 0.5s ease; }
.service-card:hover .service-overlay { background:linear-gradient(to top,rgba(10,10,10,0.97) 0%,rgba(10,10,10,0.6) 60%,rgba(10,10,10,0.2) 100%); }
.service-content { position:absolute; bottom:0; left:0; right:0; padding:40px; }
.service-num { font-family:'Cormorant Garamond',serif; font-size:60px; font-weight:300; color:rgba(201,165,103,0.15); line-height:1; position:absolute; top:20px; right:30px; }
.service-icon { font-size:28px; margin-bottom:16px; display:block; }
.service-title { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:400; margin-bottom:12px; }
.service-desc { font-size:13px; color:var(--text-muted); line-height:1.8; max-height:0; overflow:hidden; transition:max-height 0.5s ease, opacity 0.4s ease; opacity:0; }
.service-card:hover .service-desc { max-height:100px; opacity:1; }
.service-price { margin-top:20px; font-size:11px; letter-spacing:3px; color:var(--gold); text-transform:uppercase; opacity:0; transition:opacity 0.4s ease 0.1s; }
.service-card:hover .service-price { opacity:1; }

/* ===================== GALLERY ===================== */
#gallery { padding:120px 60px; }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:auto; gap:10px; max-width:1300px; margin:0 auto; }
.gallery-item { overflow:hidden; position:relative; cursor:none; }
.gallery-item:nth-child(1) { grid-column:span 2; grid-row:span 2; }
.gallery-item:nth-child(4) { grid-column:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; min-height:250px; transition:transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-item::after { content:''; position:absolute; inset:0; background:rgba(201,165,103,0); transition:background 0.4s ease; }
.gallery-item:hover::after { background:rgba(201,165,103,0.08); }

/* ===================== BEFORE & AFTER ===================== */
/* ===================== TRANSFORMATIONS — FLIP CARDS ===================== */
#transformations { padding:120px 60px; background:var(--dark); }
.transform-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; max-width:1200px; margin:0 auto;
}
.transform-card { perspective:1200px; height:580px; cursor:none; }
.transform-card-inner {
  position:relative; width:100%; height:100%;
  transform-style:preserve-3d;
  transition:transform 0.9s cubic-bezier(0.77,0,0.175,1);
}
.transform-card:hover .transform-card-inner,
.transform-card.flipped .transform-card-inner { transform:rotateY(180deg); }
.transform-front, .transform-back {
  position:absolute; inset:0; backface-visibility:hidden; overflow:hidden;
}
.transform-back { transform:rotateY(180deg); }
.transform-front img, .transform-back img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.7s ease;
}
.transform-card:hover .transform-front img { transform:scale(1.05); }
.transform-card:hover .transform-back img,
.transform-card.flipped .transform-back img { transform:scale(1.05); }

.transform-front-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(5,5,5,0.92) 0%,rgba(5,5,5,0.3) 50%,rgba(5,5,5,0.05) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:30px;
}
.transform-back-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(5,5,5,0.95) 0%,rgba(5,5,5,0.2) 55%,rgba(5,5,5,0.05) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:30px;
}
.transform-back::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent); z-index:3;
}
/* Info overlays on flip card faces */
.t-front-info {
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(to top,rgba(5,5,5,0.92) 0%,rgba(5,5,5,0.3) 52%,rgba(5,5,5,0.0) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:30px;
}
.t-back-info {
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(to top,rgba(5,5,5,0.95) 0%,rgba(5,5,5,0.2) 55%,rgba(5,5,5,0.0) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:30px;
}
.t-badge {
  position:absolute; top:18px; left:18px; z-index:4;
  font-family:'Montserrat',sans-serif; font-size:9px; font-weight:700;
  letter-spacing:4px; text-transform:uppercase; padding:7px 16px;
}
.t-badge.before {
  background:rgba(10,10,10,0.8); color:rgba(240,236,228,0.8);
  border:1px solid rgba(255,255,255,0.2); backdrop-filter:blur(8px);
}
.t-badge.after { background:var(--gold); color:var(--black); }
.t-hint {
  position:absolute; top:18px; right:18px; z-index:4;
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:rgba(240,236,228,0.4); text-align:right;
}
.t-category { font-size:9px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.t-title { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:400; line-height:1.2; margin-bottom:8px; color:var(--white); }
.t-desc { font-size:12px; color:var(--text-muted); line-height:1.7; margin-bottom:14px; }
.t-meta { font-size:11px; color:rgba(201,165,103,0.7); letter-spacing:1.5px; }
.t-cta {
  display:inline-flex; align-items:center; gap:10px; margin-top:18px;
  font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold);
}
.t-cta::after { content:'→'; font-size:14px; }
/* Arrow indicator on front */
.t-flip-arrow {
  position:absolute; bottom:30px; right:30px; z-index:4;
  width:44px; height:44px; border:1px solid rgba(201,165,103,0.5);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:18px; color:var(--gold);
  animation:flipPulse 2s ease-in-out infinite;
}
@keyframes flipPulse {
  0%,100%{box-shadow:0 0 0 0 rgba(201,165,103,0.3);}
  50%{box-shadow:0 0 0 10px rgba(201,165,103,0);}
}
@media(max-width:900px){ .transform-grid{grid-template-columns:1fr;} .transform-card{height:460px;} }

/* ===================== PRODUCTS ===================== */
#products { padding:120px 60px; overflow:hidden; }
.products-track-outer { overflow:hidden; position:relative; margin:0 -60px; }
.products-track-outer::before, .products-track-outer::after {
  content:''; position:absolute; top:0; bottom:0; width:200px; z-index:2; pointer-events:none;
}
.products-track-outer::before { left:0; background:linear-gradient(90deg,var(--black),transparent); }
.products-track-outer::after { right:0; background:linear-gradient(-90deg,var(--black),transparent); }
.products-track { display:flex; gap:24px; padding:20px 60px; animation:productsScroll 25s linear infinite; width:max-content; }
.products-track:hover { animation-play-state:paused; }
@keyframes productsScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.product-card {
  flex-shrink:0; width:220px; height:280px;
  border:1px solid rgba(201,165,103,0.15);
  background:var(--dark2);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:30px 20px; text-align:center;
  position:relative; overflow:hidden;
  transition:border-color 0.4s, transform 0.4s; cursor:none;
}
.product-card:hover { border-color:rgba(201,165,103,0.5); transform:translateY(-6px); }
.product-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(201,165,103,0.06),transparent 70%); opacity:0; transition:opacity 0.4s; }
.product-card:hover::before { opacity:1; }
.product-logo { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:300; letter-spacing:3px; color:var(--white); margin-bottom:12px; }
.product-type { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.product-desc { font-size:12px; color:var(--text-muted); line-height:1.7; }
.product-img { width:80px; height:80px; object-fit:contain; margin:0 auto 16px; filter:brightness(0) invert(1); opacity:0.6; }

/* ===================== EXPERIENCE CTA ===================== */
#experience { padding:140px 60px; background:var(--dark2); position:relative; overflow:hidden; }
.experience-bg { position:absolute; inset:0; background-image:url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1920&q=80'); background-size:cover; background-position:center; opacity:0.08; }
.experience-inner { position:relative; z-index:1; max-width:800px; margin:0 auto; text-align:center; }
.script-text { font-family:'Great Vibes',cursive; font-size:clamp(50px,6vw,80px); color:var(--gold); display:block; margin-bottom:10px; }
.experience-inner h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,4.5vw,60px); font-weight:300; letter-spacing:2px; line-height:1.1; margin-bottom:30px; }
.experience-inner p { font-size:14px; color:var(--text-muted); line-height:2; margin-bottom:50px; max-width:600px; margin-left:auto; margin-right:auto; }

/* ===================== TEAM ===================== */
#team { padding:120px 60px; background:var(--dark); }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; max-width:1300px; margin:0 auto; }
.team-card { position:relative; overflow:hidden; cursor:none; }
.team-img { height:380px; object-fit:cover; width:100%; filter:grayscale(20%); transition:filter 0.5s ease, transform 0.6s ease; }
.team-card:hover .team-img { filter:grayscale(0%); transform:scale(1.04); }
.team-info { padding:24px 0 10px; border-top:1px solid rgba(201,165,103,0.2); margin-top:20px; }
.team-name { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; margin-bottom:4px; }
.team-role { font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); }

/* ===================== TESTIMONIALS ===================== */
#testimonials { padding:120px 60px; background:var(--black); overflow:hidden; }
.testimonial-slider { max-width:900px; margin:0 auto; position:relative; }
.testimonial-track { display:flex; transition:transform 0.7s cubic-bezier(0.77,0,0.175,1); }
.testimonial-slide { min-width:100%; text-align:center; padding:0 60px; }
.quote-icon { font-family:'Cormorant Garamond',serif; font-size:100px; line-height:0.5; color:var(--gold); opacity:0.3; display:block; margin-bottom:30px; }
.testimonial-text { font-family:'Cormorant Garamond',serif; font-size:clamp(20px,2.5vw,28px); font-style:italic; font-weight:300; line-height:1.6; color:rgba(240,236,228,0.88); margin-bottom:40px; }
.testimonial-stars { color:var(--gold); font-size:14px; letter-spacing:4px; margin-bottom:20px; }
.testimonial-author { font-size:12px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); }
.testimonial-location { font-size:11px; color:var(--text-muted); margin-top:6px; letter-spacing:2px; }
.slider-controls { display:flex; align-items:center; justify-content:center; gap:20px; margin-top:60px; }
.slider-btn { width:48px; height:48px; border:1px solid rgba(201,165,103,0.4); background:transparent; color:var(--gold); font-size:18px; cursor:none; display:flex; align-items:center; justify-content:center; transition:all 0.3s ease; }
.slider-btn:hover { background:var(--gold); color:var(--black); border-color:var(--gold); }
.slider-dots { display:flex; gap:10px; }
.dot { width:6px; height:6px; border-radius:50%; background:rgba(201,165,103,0.3); cursor:pointer; transition:all 0.3s; }
.dot.active { background:var(--gold); transform:scale(1.4); }

/* ===================== PRICING ===================== */
#pricing { padding:120px 60px; background:var(--dark2); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; max-width:1100px; margin:0 auto; }
.pricing-card { padding:60px 40px; background:var(--dark); border:1px solid rgba(201,165,103,0.1); position:relative; overflow:hidden; transition:border-color 0.4s ease, transform 0.4s ease; }
.pricing-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); transform:scaleX(0); transition:transform 0.5s ease; }
.pricing-card:hover { border-color:rgba(201,165,103,0.4); transform:translateY(-8px); }
.pricing-card:hover::before { transform:scaleX(1); }
.pricing-card.featured { background:linear-gradient(135deg,rgba(201,165,103,0.08) 0%,rgba(10,10,10,0) 100%); border-color:rgba(201,165,103,0.4); transform:scale(1.02); }
.pricing-card.featured::before { transform:scaleX(1); }
.pricing-tag { font-size:9px; letter-spacing:4px; text-transform:uppercase; background:var(--gold); color:var(--black); padding:5px 14px; display:inline-block; margin-bottom:30px; font-weight:700; }
.pricing-name { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:400; margin-bottom:12px; }
.pricing-price { font-family:'Cormorant Garamond',serif; font-size:64px; font-weight:300; color:var(--gold); line-height:1; margin-bottom:8px; }
.pricing-price sup { font-size:24px; vertical-align:top; margin-top:14px; display:inline-block; }
.pricing-duration { font-size:11px; color:var(--text-muted); letter-spacing:2px; margin-bottom:40px; }
.pricing-divider { height:1px; background:rgba(201,165,103,0.15); margin-bottom:35px; }
.pricing-features { list-style:none; margin-bottom:40px; }
.pricing-features li { font-size:13px; color:var(--text-muted); padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.05); display:flex; align-items:center; gap:12px; }
.pricing-features li::before { content:''; width:18px; height:1px; background:var(--gold); flex-shrink:0; }

/* ===================== GIFT CARDS ===================== */
#giftcards { padding:120px 60px; background:var(--dark); }
.giftcard-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.giftcard-visual { position:relative; }
.gc-card {
  width:100%; aspect-ratio:16/10;
  background:linear-gradient(135deg,#1a1508 0%,#2d2008 40%,#1a1508 100%);
  border:1px solid rgba(201,165,103,0.35);
  border-radius:12px; padding:40px;
  position:relative; overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,165,103,0.1);
  transform:perspective(800px) rotateY(-8deg) rotateX(2deg);
  transition:transform 0.5s ease;
}
.gc-card:hover { transform:perspective(800px) rotateY(-4deg) rotateX(1deg); }
.gc-shimmer {
  position:absolute; inset:0; border-radius:12px;
  background:linear-gradient(120deg,transparent 30%,rgba(201,165,103,0.08) 50%,transparent 70%);
  background-size:200% 200%;
  animation:gcShimmer 4s ease-in-out infinite;
}
@keyframes gcShimmer { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
.gc-pattern {
  position:absolute; inset:0; border-radius:12px; opacity:0.04;
  background-image: repeating-linear-gradient(45deg,#c9a567 0,#c9a567 1px,transparent 0,transparent 50%);
  background-size:20px 20px;
}
.gc-logo { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; letter-spacing:6px; color:var(--gold); position:relative; z-index:1; }
.gc-chip { width:44px; height:34px; background:linear-gradient(135deg,#e8d5a3,#c9a567); border-radius:6px; margin:30px 0 0; position:relative; z-index:1; opacity:0.9; }
.gc-amount { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:300; color:var(--white); position:relative; z-index:1; line-height:1; margin-top:auto; }
.gc-amount small { font-size:20px; font-weight:300; }
.gc-footer { display:flex; justify-content:space-between; align-items:flex-end; margin-top:20px; position:relative; z-index:1; }
.gc-label { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(201,165,103,0.6); }
.gc-number { font-size:13px; letter-spacing:3px; color:rgba(201,165,103,0.7); font-family:'Montserrat',sans-serif; }
.gc-card-flex { display:flex; flex-direction:column; height:100%; }
.giftcard-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(34px,3.5vw,50px); font-weight:400; line-height:1.1; margin-bottom:20px; }
.giftcard-text h2 em { font-style:italic; color:var(--gold); }
.giftcard-text p { font-size:14px; color:var(--text-muted); line-height:2; margin-bottom:40px; }
.gc-amounts { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:40px; }
.gc-amount-btn {
  padding:14px 28px; border:1px solid rgba(201,165,103,0.3); background:transparent;
  font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; color:var(--text-muted);
  cursor:none; transition:all 0.3s;
}
.gc-amount-btn:hover, .gc-amount-btn.selected { border-color:var(--gold); color:var(--gold); background:rgba(201,165,103,0.05); }

/* ===================== LOCATION / MAP ===================== */
#location { padding:120px 60px; background:var(--black); }
.location-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; }
.location-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(34px,3.5vw,50px); font-weight:400; line-height:1.1; margin-bottom:20px; }
.location-text h2 em { font-style:italic; color:var(--gold); }
.location-text p { font-size:14px; color:var(--text-muted); line-height:2; margin-bottom:40px; }
.locations-list { display:flex; flex-direction:column; gap:24px; margin-bottom:50px; }
.location-item { display:flex; gap:20px; padding:24px; border:1px solid rgba(201,165,103,0.12); background:var(--dark); cursor:none; transition:border-color 0.3s; }
.location-item:hover { border-color:rgba(201,165,103,0.4); }
.location-item.active { border-color:var(--gold); background:rgba(201,165,103,0.04); }
.loc-num { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:300; color:rgba(201,165,103,0.3); line-height:1; }
.loc-info h4 { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:400; margin-bottom:6px; }
.loc-info p { font-size:12px; color:var(--text-muted); line-height:1.7; }
.loc-city { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-top:4px; }
.map-container { position:relative; border:1px solid rgba(201,165,103,0.2); overflow:hidden; }
.map-container iframe { display:block; width:100%; height:500px; border:none; filter:grayscale(1) invert(0.93) contrast(1.1) brightness(0.5) sepia(0.4) hue-rotate(20deg); }
.map-overlay { position:absolute; inset:0; pointer-events:none; background:linear-gradient(135deg,rgba(10,10,10,0.2) 0%,transparent 50%); }
.map-pin {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.map-pin-dot { width:16px; height:16px; background:var(--gold); border-radius:50%; border:3px solid var(--black); animation:pingPulse 2s ease-in-out infinite; }
@keyframes pingPulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,165,103,0.6);} 50%{box-shadow:0 0 0 16px rgba(201,165,103,0);} }
.map-label-card { position:absolute; bottom:30px; left:30px; background:rgba(10,10,10,0.95); border:1px solid rgba(201,165,103,0.3); padding:20px 24px; backdrop-filter:blur(10px); pointer-events:none; }
.map-label-card h5 { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:400; margin-bottom:4px; }
.map-label-card p { font-size:11px; color:var(--text-muted); }

/* ===================== BOOKING ===================== */
#booking { padding:120px 60px; background:var(--dark); }
.booking-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.booking-info h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,4vw,52px); font-weight:400; line-height:1.1; margin-bottom:24px; }
.booking-info p { font-size:14px; color:var(--text-muted); line-height:2; margin-bottom:50px; }
.contact-details { display:flex; flex-direction:column; gap:24px; }
.contact-item { display:flex; align-items:flex-start; gap:20px; padding-bottom:24px; border-bottom:1px solid rgba(201,165,103,0.1); }
.contact-icon { width:44px; height:44px; border:1px solid rgba(201,165,103,0.3); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; color:var(--gold); }
.contact-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
.contact-value { font-size:14px; color:rgba(240,236,228,0.8); }
.booking-form { background:rgba(255,255,255,0.02); border:1px solid rgba(201,165,103,0.15); padding:50px 40px; }
.form-title { font-family:'Cormorant Garamond',serif; font-size:26px; margin-bottom:36px; font-weight:400; }
.form-group { margin-bottom:28px; }
.form-group label { display:block; font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.form-group input, .form-group select, .form-group textarea { width:100%; background:rgba(255,255,255,0.04); border:1px solid rgba(201,165,103,0.2); padding:14px 18px; font-family:'Montserrat',sans-serif; font-size:13px; color:var(--cream); outline:none; transition:border-color 0.3s; -webkit-appearance:none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color:rgba(240,236,228,0.3); }
.form-group select option { background:var(--dark2); color:var(--white); }
.form-group textarea { resize:none; height:100px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }

/* ===================== FOOTER ===================== */
footer { background:var(--black); border-top:1px solid rgba(201,165,103,0.15); padding:80px 60px 40px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-brand .logo { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:300; letter-spacing:6px; text-transform:uppercase; margin-bottom:20px; display:block; }
.footer-brand .logo span { color:var(--gold); }
.footer-brand p { font-size:13px; color:var(--text-muted); line-height:1.9; max-width:300px; }
.footer-social { display:flex; gap:14px; margin-top:30px; }
.social-link { width:38px; height:38px; border:1px solid rgba(201,165,103,0.25); display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--text-muted); transition:all 0.3s; cursor:none; }
.social-link:hover { border-color:var(--gold); color:var(--gold); background:rgba(201,165,103,0.08); }
.footer-col h4 { font-size:11px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:28px; font-weight:600; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:14px; }
.footer-col ul li a { font-size:13px; color:var(--text-muted); transition:color 0.3s; cursor:none; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-hours p { font-size:12px; color:var(--text-muted); line-height:2; }
.footer-hours strong { color:rgba(240,236,228,0.7); font-weight:400; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:30px; display:flex; align-items:center; justify-content:space-between; }
.footer-bottom p { font-size:12px; color:rgba(240,236,228,0.3); letter-spacing:1.5px; }

/* ===================== FLOATING BOOK ===================== */
.float-book { position:fixed; bottom:40px; right:40px; z-index:500; background:var(--gold); color:var(--black); padding:16px 30px; font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; cursor:none; transition:all 0.3s; box-shadow:0 8px 40px rgba(201,165,103,0.35); animation:floatPulse 3s ease-in-out infinite; }
.float-book:hover { background:var(--gold-light); box-shadow:0 12px 50px rgba(201,165,103,0.5); }
@keyframes floatPulse { 0%,100%{box-shadow:0 8px 40px rgba(201,165,103,0.35);} 50%{box-shadow:0 8px 60px rgba(201,165,103,0.55);} }

/* ===================== LOADER ===================== */
#loader { position:fixed; inset:0; z-index:10000; background:var(--black); display:flex; align-items:center; justify-content:center; flex-direction:column; transition:opacity 0.8s ease, visibility 0.8s ease; }
#loader.hidden { opacity:0; visibility:hidden; }
.loader-logo { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; letter-spacing:12px; text-transform:uppercase; color:var(--white); animation:loaderPulse 1.5s ease-in-out infinite; }
.loader-logo span { color:var(--gold); }
.loader-bar { width:200px; height:1px; background:rgba(201,165,103,0.2); margin-top:30px; overflow:hidden; position:relative; }
.loader-fill { height:100%; background:var(--gold); animation:loaderFill 2.5s ease forwards; }
@keyframes loaderPulse { 0%,100%{opacity:0.5;} 50%{opacity:1;} }
@keyframes loaderFill { 0%{width:0%;} 100%{width:100%;} }

/* ===================== RESPONSIVE ===================== */
@media (max-width:1100px) {
  #about { grid-template-columns:1fr; gap:60px; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-item:nth-child(1) { grid-column:span 2; }
  .gallery-item:nth-child(4) { grid-column:span 1; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr; max-width:400px; }
  .pricing-card.featured { transform:none; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .giftcard-inner, .location-inner { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  nav { padding:20px 24px; }
  nav.scrolled { padding:14px 24px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  #hero .hero-cta { flex-direction:column; }
  #about { padding:80px 24px; }
  #services,#gallery,#team,#testimonials,#pricing,#booking,#experience,#transformations,#products,#giftcards,#location { padding:80px 24px; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-item:nth-child(1),.gallery-item:nth-child(4) { grid-column:span 1; }
  .team-grid { grid-template-columns:1fr; }
  .booking-inner { grid-template-columns:1fr; gap:50px; }
  .footer-top { grid-template-columns:1fr; gap:40px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .about-img-accent { display:none; }
  footer { padding:60px 24px 30px; }
  .float-book { bottom:20px; right:20px; padding:14px 22px; }
  .testimonial-slide { padding:0 10px; }
  .gc-card { transform:none; }
  .ba-slider-wrap { height:300px; }
  .products-track-outer::before,.products-track-outer::after { width:60px; }
}
