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

:root {
  --bg-day: #F4EFE4; --text-day: #071E17;
  --bg-night: #062F23; --text-night: #EAE3D5;
  --gold: #B79A5A; --brown: #6B4A32;
  --bg: var(--bg-day); --text: var(--text-day);
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

body.theme-night { --bg: var(--bg-night); --text: var(--text-night); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: auto; }
body {
  background-color: var(--bg); color: var(--text);
  font-family: 'Inter', sans-serif; font-weight: 300; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  transition: background-color 1.5s var(--ease), color 1.5s var(--ease);
}
body.lightbox-open { overflow: hidden; }

/* Typography */
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.sans { font-family: 'Inter', sans-serif; font-weight: 300; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; font-weight: 400; }

/* Navigation */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; mix-blend-mode: difference; color: #fff;
}
.nav-logo img { height: 35px; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 3rem; }
.nav-links a, .nav-cta a { color: #fff; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.3s; }
.nav-links a:hover, .nav-cta a:hover { opacity: 0.7; }

/* Buttons */
.btn {
  display: inline-block; padding: 1rem 2.5rem; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; border-radius: 50px;
  transition: transform 0.2s, opacity 0.2s, background-color 0.2s, border-color 0.2s; cursor: pointer; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn-primary { background-color: var(--gold); color: #000; border: 1px solid var(--gold); }
.btn-outline { background-color: transparent; color: inherit; border: 1px solid var(--text); }
body.theme-night .btn-outline { border-color: var(--text-night); }
.btn-small { padding: 0.6rem 1.5rem; font-size: 0.7rem; }

/* Scene Layout */
.scene {
  min-height: 100vh; padding: 8rem 4rem; display: flex; flex-direction: column;
  justify-content: center; position: relative; max-width: 1600px; margin: 0 auto;
}
.img-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reveal-block { display: block; } /* GSAP handles initial state */

/* Hero */
.scene.hero { padding: 0; max-width: 100%; align-items: center; text-align: center; color: #fff; overflow: hidden; }
.hero-bg-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; background-color: #041510; }
.hero-bg { width: 100%; height: 100%; background-image: url('../images/real-interior.jpg'); background-size: cover; background-position: center; filter: brightness(0.65); transform-origin: center; will-change: transform; }
.hero-content { position: relative; z-index: 1; pointer-events: none; }
.hero-title { font-size: clamp(4rem, 10vw, 10rem); margin-bottom: 2rem; will-change: transform; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.5rem); color: rgba(255,255,255,0.8); }
.live-status-badge { margin-top: 3rem; font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.5rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; display: inline-block; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); }

/* Story / Why Us */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.story-text h2 { font-size: clamp(3rem, 6vw, 6rem); margin-bottom: 2rem; }
.story-text p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--brown); max-width: 500px; }
.story-img-main { aspect-ratio: 4/5; width: 100%; }

/* Menu */
.menu-header { margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
.menu-header h2 { font-size: 4rem; }
.menu-controls { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.menu-filter { background: none; border: 1px solid var(--text); color: var(--text); padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.menu-filter.active, .menu-filter:hover { background: var(--text); color: var(--bg); }
.menu-search { padding: 0.6rem 1.2rem; border-radius: 30px; border: 1px solid var(--text); background: transparent; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.8rem; outline: none; width: 200px; }
.menu-search::placeholder { color: var(--brown); opacity: 0.7; }
.menu-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 6rem; align-items: start; }
.menu-list { list-style: none; min-height: 50vh; }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; padding: 2rem 0; border-bottom: 1px solid rgba(0,0,0,0.1); cursor: pointer; transition: padding-left 0.3s var(--ease), opacity 0.3s; }
body.theme-night .menu-row { border-color: rgba(255,255,255,0.1); }
.menu-row:hover { padding-left: 1.5rem; }
.menu-row h3 { font-size: 2.2rem; transition: color 0.3s; margin-bottom: 0.2rem; }
.menu-row:hover h3 { color: var(--gold); }
.menu-row p { font-size: 0.95rem; color: var(--brown); }
.menu-meta { text-align: right; }
.menu-price { font-size: 1.2rem; margin-bottom: 0.5rem; }
.menu-action { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; opacity: 0; transition: opacity 0.3s; }
.menu-row:hover .menu-action { opacity: 1; }
.menu-preview-pane { position: sticky; top: 20vh; width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background-color: rgba(0,0,0,0.05); }
.menu-preview-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05) translateX(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.menu-preview-img.active { opacity: 1; transform: scale(1) translateX(0); }

/* Perfect For / Experience */
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4rem; margin-top: 4rem; }
.exp-card { position: relative; }
.exp-card .img-wrap { aspect-ratio: 3/4; margin-bottom: 2rem; cursor: pointer; }
.exp-card h3 { font-size: 2rem; margin-bottom: 1rem; }
.exp-card p { font-size: 1rem; color: var(--brown); margin-bottom: 1.5rem; }

/* Reviews Hub */
.reviews-hub { text-align: center; margin-top: 4rem; padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
body.theme-night .reviews-hub { border-color: rgba(255,255,255,0.1); }
.review-stats { display: flex; justify-content: center; gap: 4rem; margin-bottom: 4rem; flex-wrap: wrap; }
.stat-box { display: flex; flex-direction: column; align-items: center; }
.stat-score { font-size: 4rem; color: var(--gold); font-family: 'Cormorant Garamond', serif; line-height: 1; }
.stat-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1rem; }
.review-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* Plan Your Visit & Location */
.visit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.visit-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.visit-item p { color: var(--brown); font-size: 1rem; }
.visit-actions { display: flex; flex-direction: column; gap: 1rem; }
.visit-actions .btn { width: 100%; text-align: center; }

/* Lightbox Gallery */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: rgba(6, 47, 35, 0.98); z-index: 100000;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 80vh; display: flex; justify-content: center; align-items: center; }
.lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.lightbox-controls { position: absolute; top: 50%; left: -5vw; right: -5vw; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.lb-btn { pointer-events: auto; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; backdrop-filter: blur(5px); transition: background 0.2s; }
.lb-btn:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { position: absolute; top: 2rem; right: 3rem; color: #fff; font-size: 3rem; cursor: pointer; padding: 1rem; line-height: 1; z-index: 2; transition: transform 0.2s; }
.lightbox-close:hover { transform: scale(1.1); }
.lightbox-footer { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox-counter { color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.2em; font-family: 'Inter', sans-serif; }
.lightbox-cta { color: var(--gold); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 0.2rem; }

/* Desktop FAB Concierge */
.fab-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.fab-menu { display: flex; flex-direction: column; gap: 0.8rem; opacity: 0; pointer-events: none; transform: translateY(20px); transition: all 0.4s var(--ease); align-items: flex-end; }
.fab-container:hover .fab-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-trigger { background: var(--gold); color: #000; border: none; padding: 1rem 2rem; border-radius: 50px; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,0,0,0.2); cursor: pointer; transition: transform 0.2s; font-family: 'Inter', sans-serif; }
.fab-trigger:hover { transform: scale(1.05); }
.fab-menu a { background: var(--text); color: var(--bg); padding: 0.8rem 1.5rem; border-radius: 30px; text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: 0 5px 15px rgba(0,0,0,0.15); transition: opacity 0.2s; }
.fab-menu a:hover { opacity: 0.8; }

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(244,239,228,0.85); backdrop-filter: blur(15px); border-top: 1px solid rgba(0,0,0,0.1); z-index: 1000; padding: 1rem 0; padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
body.theme-night .mobile-sticky-bar { background: rgba(6,47,35,0.85); border-color: rgba(255,255,255,0.1); }
.mobile-sticky-inner { display: flex; justify-content: space-evenly; align-items: center; }
.mobile-sticky-inner a { color: var(--text); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; text-align: center; display: flex; flex-direction: column; gap: 0.3rem; }

/* Footer */
.footer { padding: 6rem 4rem 4rem 4rem; text-align: center; background-color: var(--bg-night); color: var(--text-night); }
.footer-logo { font-size: 3rem; font-family: 'Cormorant Garamond', serif; margin-bottom: 2rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; opacity: 0.5; }

/* Mobile Adaptations */
@media (max-width: 992px) {
  .navbar { padding: 1.5rem 2rem; }
  .nav-links, .fab-container { display: none; }
  .scene { padding: 6rem 2rem; }
  .story-layout, .menu-layout, .visit-layout { grid-template-columns: 1fr; gap: 4rem; }
  .menu-preview-pane { display: none; }
  .menu-row { flex-direction: column; gap: 0.5rem; padding: 1.5rem 0; }
  .menu-action { opacity: 1; display: inline-block; margin-top: 0.5rem; border: 1px solid var(--gold); padding: 0.4rem 1rem; border-radius: 30px; }
  .menu-header { flex-direction: column; align-items: flex-start; }
  .visit-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: block; }
  .footer { padding-bottom: 8rem; }
  .lightbox-controls { left: 1rem; right: 1rem; }
}

/* ==========================================================================
   LUXURY UPGRADES (GRAIN, CURSOR, EDITORIAL)
   ========================================================================== */

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

/* Custom Cursor (Hide on mobile) */
@media (min-width: 992px) {
  body, a, button, input { cursor: none !important; }
  .cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s; }
  .cursor-outline { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s; }
  .cursor-hover .cursor-dot { width: 0; height: 0; opacity: 0; }
  .cursor-hover .cursor-outline { width: 60px; height: 60px; background: rgba(183, 154, 90, 0.1); backdrop-filter: blur(2px); border-color: rgba(183, 154, 90, 0.5); }
}
@media (max-width: 991px) {
  .cursor-dot, .cursor-outline { display: none; }
}

/* Section Numbers & Details */
.scene { position: relative; }
.section-num { position: absolute; top: 2rem; left: 2rem; font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--gold); z-index: 2; opacity: 0.6; }
.section-num::after { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); margin-top: 8px; opacity: 0.5; }

/* Enforced Rhythm Classes */
.bg-dark-override { background-color: #062F23 !important; color: #F4EFE4 !important; }
.bg-dark-override .section-num { color: #B79A5A; }
.bg-dark-override h2, .bg-dark-override h3 { color: #F4EFE4; }
.bg-dark-override p { color: rgba(244, 239, 228, 0.8); }

/* Asymmetric Food Layout */
.editorial-food { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 2rem; margin-top: 4rem; align-items: center; }
.ed-big { grid-column: 1 / 3; grid-row: 1 / 3; overflow: hidden; border-radius: 4px; }
.ed-big img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ed-big:hover img { transform: scale(1.04); }
.ed-small { grid-column: 3 / 4; grid-row: 1 / 2; overflow: hidden; border-radius: 4px; margin-top: -4rem; }
.ed-small img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ed-small:hover img { transform: scale(1.04); }
.ed-text { grid-column: 3 / 4; grid-row: 2 / 3; padding-right: 1rem; }
@media (max-width: 768px) {
  .editorial-food { grid-template-columns: 1fr; }
  .ed-big, .ed-small, .ed-text { grid-column: 1 / 2; grid-row: auto; margin-top: 0; }
}

/* Magnetic Button Utility */
.magnetic { display: inline-block; transition: transform 0.1s linear; }

/* Editorial Collage (Masonry-ish) */
.collage-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1.5rem; margin-top: 4rem; }
.collage-item { position: relative; overflow: hidden; border-radius: 4px; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.collage-item:hover img { transform: scale(1.05); }
.collage-item .overlay { position: absolute; inset: 0; background: rgba(6, 47, 35, 0.4); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Inter', sans-serif; letter-spacing: 2px; font-size: 0.8rem; backdrop-filter: blur(2px); }
.collage-item:hover .overlay { opacity: 1; }
/* Specific placements for collage feeling */
.c-1 { grid-column: 1 / 3; grid-row: span 2; }
.c-2 { grid-column: 3 / 4; grid-row: span 1; }
.c-3 { grid-column: 4 / 5; grid-row: span 2; }
.c-4 { grid-column: 3 / 4; grid-row: span 1; }
@media (max-width: 768px) {
  .collage-grid { grid-template-columns: 1fr 1fr; }
  .c-1, .c-2, .c-3, .c-4 { grid-column: span 1; grid-row: span 1; }
}

/* Massive Text Section */
.huge-text-section h2 { font-size: clamp(3.5rem, 8vw, 8rem); line-height: 0.9; text-transform: uppercase; margin: 0; }

/* =========================================
   FINAL LUXURY POLISH OVERRIDES
   ========================================= */

/* 1. Loader */
.lux-loader { position: fixed; inset: 0; background: var(--bg); z-index: 999999; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--gold); transition: background 0.5s ease; }
.lux-loader-brand { font-size: 2rem; letter-spacing: 0.2em; opacity: 0; font-family: 'Playfair Display', serif; }
.lux-loader-leaf { width: 40px; margin-bottom: 1.5rem; opacity: 0; stroke: var(--gold); fill: none; stroke-width: 1; stroke-dasharray: 100; stroke-dashoffset: 100; }

/* 2. Eyebrow & Typography */
.eyebrow { font-family: 'Inter', sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 1rem; }
h1, h2, h3, .serif { letter-spacing: -0.02em; line-height: 1.1; }
p, .sans { line-height: 1.7; opacity: 0.85; }

/* 3. Refined Buttons */
.btn { border-radius: 2px; padding: 0.8rem 1.8rem; font-size: 0.8rem; letter-spacing: 0.15em; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; gap: 0.5rem; text-transform: uppercase; font-weight: 500; }
.btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); box-shadow: 0 4px 15px rgba(183, 154, 90, 0.15); }
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(183, 154, 90, 0.25); }
.btn-outline { border: 1px solid rgba(183, 154, 90, 0.4); color: var(--gold); background: transparent; }
.btn-outline:hover { border-color: var(--gold); background: rgba(183, 154, 90, 0.05); transform: translateY(-3px); }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* 4. Glass Navbar */
.navbar { transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); border-bottom: 1px solid transparent; padding: 1.5rem 5%; }
.navbar.scrolled { background: rgba(244, 239, 228, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(183, 154, 90, 0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.03); padding: 1rem 5%; }
.theme-night .navbar.scrolled { background: rgba(6, 47, 35, 0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* 5. Image Cinematic Polish */
img { filter: contrast(1.03) saturate(1.05); } /* Subtle editorial pop */
.reveal-img-wrap { overflow: hidden; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); position: relative; }
.theme-night .reveal-img-wrap { box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.reveal-img-wrap::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); pointer-events: none; border-radius: 4px; } /* Inner crisp edge */

/* 6. Advanced Cursor */
@media (min-width: 992px) {
  body, a, button, input { cursor: none !important; }
  .lux-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 100000; display: flex; align-items: center; justify-content: center; mix-blend-mode: difference; }
  .lux-cursor-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .lux-cursor-text { position: absolute; opacity: 0; color: #000; font-size: 0.6rem; letter-spacing: 2px; font-family: 'Inter', sans-serif; font-weight: 600; transition: opacity 0.3s ease; }
  
  .cursor-hover .lux-cursor-dot { transform: scale(4); opacity: 0.5; }
  .cursor-view { mix-blend-mode: normal; }
  .cursor-view .lux-cursor-dot { transform: scale(9); background: #FEFCF9; opacity: 1; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .cursor-view .lux-cursor-text { opacity: 1; }
}

/* 7. Botanical Transitions */
.floral-accent { position: absolute; opacity: 0.03; pointer-events: none; z-index: 0; width: 300px; transform: rotate(-15deg); }
.floral-accent.right { right: -50px; top: -50px; transform: rotate(15deg); }

/* Overlapping Depth Fix */
.scene.story { margin-top: -2rem; padding-top: 6rem; z-index: 2; position: relative; }
