/* ═══════════════════════════════════════════════════════════════════════════
   ELYSARA VENTURES - 3D INTERACTIVE LUXURY EXPERIENCE
   styles.css - Premium Animated Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES - LUXURY PALETTE
   ═══════════════════════════════════════════ */
:root {
  /* Dark Palette */
  --black: #000000;
  --black-rich: #050505;
  --black-soft: #0a0a0a;
  --black-card: #0f0f0f;
  --black-glass: rgba(5, 5, 5, 0.85);

  /* Gold & Rose Gold */
  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a7;
  --rose-gold-copper: #c17f59;
  --copper: #b87333;
  --copper-light: #d4956b;
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --gold-pale: #e8d5a3;
  --gold-dark: #8a6914;
  --gold-bright: #f5d76e;

  /* Neutrals */
  --cream: #f5e6c8;
  --white-warm: #faf3e8;
  --text-primary: #e8e0d4;
  --text-secondary: #a09888;
  --text-muted: #706858;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #c9a84c, #d4af37, #e8d5a3, #d4af37, #c9a84c);
  --gradient-gold-shine: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
  --gradient-rose: linear-gradient(135deg, #b76e79, #c17f59, #d4a0a7);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #050505 50%, #0a0a0a 100%);
  --gradient-radial-gold: radial-gradient(circle at center, rgba(201, 168, 76, 0.15), transparent 70%);

  /* Glows & Shadows */
  --glow-gold: 0 0 30px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.2);
  --glow-gold-intense: 0 0 50px rgba(201, 168, 76, 0.6), 0 0 100px rgba(201, 168, 76, 0.3), 0 0 150px rgba(201, 168, 76, 0.15);
  --glow-rose: 0 0 30px rgba(183, 110, 121, 0.4), 0 0 60px rgba(183, 110, 121, 0.2);
  --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 10px 20px -5px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 168, 76, 0.1);

  /* Glass Effects */
  --glass-bg: rgba(15, 15, 15, 0.7);
  --glass-border: rgba(201, 168, 76, 0.2);
  --glass-blur: blur(20px);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --font-accent: 'Marcellus', serif;

  /* Timing Functions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* 3D Perspective */
  --perspective: 1200px;
  --perspective-origin: 50% 50%;
}

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

html {
  scroll-behavior: smooth;
  overflow: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--black);
  font-size: 16px;
}

html.nav-unlocked {
  overflow-y: auto;
}

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-elegant);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Hide all main content until site is unlocked */
#home,
#about,
#services,
#projects,
#inquiry,
footer {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

html.nav-unlocked #home,
html.nav-unlocked #about,
html.nav-unlocked #services,
html.nav-unlocked #projects,
html.nav-unlocked #inquiry,
html.nav-unlocked footer {
  opacity: 1;
  visibility: visible;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR - OPTIMIZED FOR 60FPS
   ═══════════════════════════════════════════ */
.cursor-container {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: visible;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  will-change: transform;
  box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(201, 168, 76, 0.5);
  z-index: 999999;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  pointer-events: none;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rose-gold);
  border-radius: 50%;
  will-change: transform;
  opacity: 0.6;
  z-index: 999998;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.15), transparent 70%);
  will-change: transform;
  z-index: 999997;
  pointer-events: none;
}

/* Cursor hover states */
body.cursor-hover .cursor-dot {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px solid var(--gold);
  box-shadow: 0 0 30px var(--gold);
}

body.cursor-hover .cursor-outline {
  width: 55px;
  height: 55px;
  opacity: 0;
}

body.cursor-click .cursor-dot {
  width: 8px;
  height: 8px;
}

/* Hide default cursor on desktop */
@media (hover: hover) and (pointer: fine) {

  html,
  body,
  *,
  *::before,
  *::after {
    cursor: none !important;
  }
}

/* Hide custom cursor on touch devices */
@media (hover: none),
(pointer: coarse) {

  .cursor-container,
  .cursor-dot,
  .cursor-outline,
  .cursor-trail {
    display: none !important;
  }

  html,
  body,
  *,
  *::before,
  *::after {
    cursor: auto !important;
  }
}

/* ═══════════════════════════════════════════
   AMBIENT PARTICLES
   ═══════════════════════════════════════════ */
.ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ambient-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: ambientFloat 15s ease-in-out infinite;
}

@keyframes ambientFloat {

  0%,
  100% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* ═══════════════════════════════════════════
   FLOATING ORBS
   ═══════════════════════════════════════════ */
.floating-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--rose-gold), transparent 70%);
  top: 40%;
  right: -10%;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--copper), transparent 70%);
  bottom: -10%;
  left: 30%;
  animation-delay: -10s;
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  top: 60%;
  left: -5%;
  animation-delay: -15s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(50px, -30px) scale(1.1);
  }

  50% {
    transform: translate(20px, 50px) scale(0.9);
  }

  75% {
    transform: translate(-30px, 20px) scale(1.05);
  }
}

/* ═══════════════════════════════════════════
   LOADER SCREEN
   ═══════════════════════════════════════════ */
#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out-expo), visibility 1s;
}

#loader-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-3d-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: loaderRotate 4s linear infinite;
  transform-style: preserve-3d;
}

.ring-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
}

.ring-segment:nth-child(1) {
  transform: rotateX(60deg) rotateZ(0deg);
  border-top-color: var(--gold);
}

.ring-segment:nth-child(2) {
  transform: rotateX(60deg) rotateZ(45deg);
  animation-delay: 0.25s;
  border-top-color: var(--rose-gold);
}

.ring-segment:nth-child(3) {
  transform: rotateX(60deg) rotateZ(90deg);
  animation-delay: 0.5s;
  border-top-color: var(--copper);
}

.ring-segment:nth-child(4) {
  transform: rotateX(60deg) rotateZ(135deg);
  animation-delay: 0.75s;
  border-top-color: var(--rose-gold-light);
}

@keyframes loaderRotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.loader-logo {
  width: 110px;
  height: auto;
  animation: loaderPulse 2s ease-in-out infinite, loaderFloat 3s ease-in-out infinite;
  filter: drop-shadow(var(--glow-gold));
  position: relative;
  z-index: 2;
}

@keyframes loaderPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3)) brightness(1);
  }

  50% {
    filter: drop-shadow(0 0 50px rgba(201, 168, 76, 0.8)) brightness(1.3);
  }
}

@keyframes loaderFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(0deg);
  }

  50% {
    transform: translateY(-10px) rotateY(10deg);
  }
}

.loader-bar-container {
  margin-top: 60px;
  width: 250px;
  height: 2px;
  background: rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold), var(--rose-gold-light));
  transition: width 0.1s linear;
  border-radius: 2px;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--rose-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--rose-gold), 0 0 40px var(--gold);
}

.loader-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold-shine);
  animation: loaderGlowMove 2s ease-in-out infinite;
}

@keyframes loaderGlowMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

.loader-text {
  margin-top: 30px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  gap: 2px;
}

.loader-text-char {
  opacity: 0;
  animation: charFade 2s ease-in-out infinite;
}

.loader-text-char:nth-child(1) {
  animation-delay: 0s;
}

.loader-text-char:nth-child(2) {
  animation-delay: 0.05s;
}

.loader-text-char:nth-child(3) {
  animation-delay: 0.1s;
}

.loader-text-char:nth-child(4) {
  animation-delay: 0.15s;
}

.loader-text-char:nth-child(5) {
  animation-delay: 0.2s;
}

.loader-text-char:nth-child(6) {
  animation-delay: 0.25s;
}

.loader-text-char:nth-child(7) {
  animation-delay: 0.3s;
}

.loader-text-char:nth-child(8) {
  animation-delay: 0.35s;
}

.loader-text-char:nth-child(9) {
  animation-delay: 0.4s;
}

.loader-text-char:nth-child(10) {
  animation-delay: 0.45s;
}

.loader-text-char:nth-child(11) {
  animation-delay: 0.5s;
}

.loader-text-char:nth-child(12) {
  animation-delay: 0.55s;
}

.loader-text-char:nth-child(13) {
  animation-delay: 0.6s;
}

.loader-text-char:nth-child(14) {
  animation-delay: 0.65s;
}

.loader-text-char:nth-child(15) {
  animation-delay: 0.7s;
}

@keyframes charFade {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* ═══════════════════════════════════════════
   GRAND UNVEIL SCREEN
   ═══════════════════════════════════════════ */
#grand-unveil {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 1500px;
}

#grand-unveil.active {
  opacity: 1;
  pointer-events: all;
}

/* Luxury Curtains */
.curtain-left,
.curtain-right {
  position: absolute;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: transform 2.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-left {
  left: 0;
  background: linear-gradient(100deg,
      #0d0608 0%,
      #1a0d10 8%,
      #3d1a20 18%,
      var(--rose-gold) 35%,
      #d4a0a7 42%,
      var(--rose-gold) 50%,
      #8b4d56 62%,
      #5c2830 75%,
      #2d1318 88%,
      #1a0d10 95%,
      #0d0608 100%);
  transform: translateX(-100%);
  box-shadow: 20px 0 80px rgba(183, 110, 121, 0.6),
    inset -50px 0 100px rgba(0, 0, 0, 0.9);
}

.curtain-right {
  right: 0;
  background: linear-gradient(-100deg,
      #0d0a06 0%,
      #1a0d0a 8%,
      #3d2a14 18%,
      var(--gold) 35%,
      #e8d5a3 42%,
      var(--gold) 50%,
      #a68932 62%,
      #5c4a1a 75%,
      #2d1f14 88%,
      #1a0d0a 95%,
      #0d0a06 100%);
  transform: translateX(100%);
  box-shadow: -20px 0 80px rgba(201, 168, 76, 0.6),
    inset 50px 0 100px rgba(0, 0, 0, 0.9);
}

/* Curtains elegantly slide in when active */
#grand-unveil.active .curtain-left {
  transform: translateX(-8%);
  transition-delay: 0.3s;
}

#grand-unveil.active .curtain-right {
  transform: translateX(8%);
  transition-delay: 0.3s;
}

/* Curtain folds effect - more pronounced */
.curtain-left::before,
.curtain-right::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg,
      transparent 0px,
      rgba(0, 0, 0, 0.4) 8px,
      transparent 16px,
      rgba(255, 255, 255, 0.08) 24px,
      transparent 32px,
      rgba(0, 0, 0, 0.3) 40px,
      transparent 48px);
  pointer-events: none;
}

.curtain-left::before {
  left: 0;
}

.curtain-right::before {
  right: 0;
}

/* Curtain shimmer and lighting */
.curtain-left::after,
.curtain-right::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 10%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.4) 90%,
      rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

/* Curtain top valance/draping */
.curtain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.3) 70%,
      transparent 100%);
  z-index: 4;
  pointer-events: none;
}

/* Golden tassel/medallion at top center */
.curtain-overlay::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse at center top,
      rgba(201, 168, 76, 0.5) 0%,
      rgba(183, 110, 121, 0.3) 40%,
      transparent 70%);
  filter: blur(2px);
}

/* Decorative swag lines */
.curtain-overlay::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--rose-gold) 20%,
      var(--gold) 50%,
      var(--rose-gold) 80%,
      transparent 100%);
  opacity: 0.6;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

/* Curtain open animation on exit - more dramatic */
#grand-unveil.exit .curtain-left {
  transform: translateX(-110%);
  transition: transform 1.8s cubic-bezier(0.6, 0, 0.4, 1);
}

#grand-unveil.exit .curtain-right {
  transform: translateX(110%);
  transition: transform 1.8s cubic-bezier(0.6, 0, 0.4, 1);
}

#grand-unveil.exit .curtain-overlay {
  opacity: 0;
  transition: opacity 1s ease 0.8s;
}

#grand-unveil.exit {
  opacity: 0;
  transition: opacity 0.8s ease 1.5s;
}

/* Spotlight effect behind content */
#grand-unveil::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center,
      rgba(201, 168, 76, 0.08) 0%,
      rgba(183, 110, 121, 0.05) 30%,
      transparent 60%);
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease 0.8s;
}

#grand-unveil.active::before {
  opacity: 1;
}

.unveil-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(201, 168, 76, 0.03) 10deg,
      transparent 20deg,
      transparent 30deg,
      rgba(201, 168, 76, 0.03) 40deg,
      transparent 50deg);
  animation: rayRotate 30s linear infinite;
  opacity: 0;
  transition: opacity 2s ease;
}

#grand-unveil.active .unveil-rays {
  opacity: 1;
}

@keyframes rayRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.unveil-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--gold);
}

.unveil-content {
  position: relative;
  z-index: 10;
  text-align: center;
  transform-style: preserve-3d;
}

.unveil-logo-wrapper {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
}

.unveil-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--rose-gold);
  border-radius: 50%;
  opacity: 0;
  animation: glowRingPulse 3s ease-in-out infinite;
  box-shadow: 0 0 30px var(--rose-gold), inset 0 0 30px rgba(183, 110, 121, 0.3);
}

@keyframes glowRingPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

.unveil-logo {
  width: 0;
  max-width: 500px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 0 rgba(201, 168, 76, 0));
  transition: all 2s var(--ease-out-expo);
  transform: rotateY(0deg) scale(0.8);
}

.unveil-logo.revealed {
  width: 500px;
  opacity: 1;
  filter: drop-shadow(var(--glow-gold-intense));
  transform: rotateY(0deg) scale(1);
}

/* Decorative corner lines */
.unveil-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: opacity 1s ease 1.5s, transform 1s var(--ease-out-expo) 1.5s;
}

.unveil-corner.visible {
  opacity: 1;
  transform: scale(1);
}

.unveil-corner::before,
.unveil-corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: all 0.5s ease;
}

.unveil-corner.tl {
  top: -40px;
  left: -40px;
  transform: scale(0.5);
}

.unveil-corner.tl::before {
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
}

.unveil-corner.tl::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.unveil-corner.tr {
  top: -40px;
  right: -40px;
  transform: scale(0.5);
}

.unveil-corner.tr::before {
  top: 0;
  right: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(-90deg, var(--gold), transparent);
}

.unveil-corner.tr::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.unveil-corner.bl {
  bottom: -40px;
  left: -40px;
  transform: scale(0.5);
}

.unveil-corner.bl::before {
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
}

.unveil-corner.bl::after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(0deg, var(--gold), transparent);
}

.unveil-corner.br {
  bottom: -40px;
  right: -40px;
  transform: scale(0.5);
}

.unveil-corner.br::before {
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(-90deg, var(--gold), transparent);
}

.unveil-corner.br::after {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(0deg, var(--gold), transparent);
}

.unveil-tagline {
  margin-top: 40px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(30px) rotateX(-10deg);
  transition: all 1.2s var(--ease-out-expo) 2s;
}

.unveil-tagline.visible {
  opacity: 0.8;
  transform: translateY(0) rotateX(0deg);
}

.unveil-enter-btn {
  margin-top: 60px;
  padding: 18px 60px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.unveil-enter-btn.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.5s;
}

.unveil-enter-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

.unveil-enter-btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.unveil-enter-btn:hover .btn-shine {
  left: 100%;
}

.unveil-enter-btn .btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  border-radius: 50%;
}

.unveil-enter-btn:hover .btn-glow {
  width: 300px;
  height: 300px;
}

/* Grand unveil exit */
#grand-unveil.exit {
  animation: unveilExit 1.5s var(--ease-in-out-circ) forwards;
}

@keyframes unveilExit {
  0% {
    clip-path: inset(0 0 0 0);
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.5);
  }

  100% {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
    filter: brightness(2);
  }
}

/* ═══════════════════════════════════════════
   NAVBAR - CENTERED FLUID GLASS
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: auto;
  max-width: 90%;
  z-index: 8000;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 40px rgba(201, 168, 76, 0.05);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  pointer-events: none;
}

#navbar.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 15px 45px;
  border-color: rgba(183, 110, 121, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 60px rgba(183, 110, 121, 0.08);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: all 0.4s var(--ease-out-expo);
}

.brand-elysara {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.brand-ventures {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: var(--rose-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-logo-link:hover .nav-brand-text {
  transform: scale(1.03);
}

.nav-logo-link:hover .brand-elysara {
  filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.5));
}

.nav-logo-link:hover .brand-ventures {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: color 0.4s ease;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--rose-gold);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s var(--ease-out-expo);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold), var(--rose-gold));
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  clip-path: inset(0 0 0 0);
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 9999;
}

.nav-hamburger span {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(30px);
  z-index: 8500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 5px;
  transition: all 0.4s ease;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

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

.mobile-nav a:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════
   HERO / HOME SECTION
   ═══════════════════════════════════════════ */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
}

.hero-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: url('images/hero-bg.png') center center / cover no-repeat;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  transition: transform 0.3s var(--ease-smooth), filter 2s ease;
  will-change: transform;
  animation: heroZoomPan 25s ease-in-out infinite alternate;
}

@keyframes heroZoomPan {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  25% {
    transform: scale(1.1) translate(-1%, -0.5%);
  }

  50% {
    transform: scale(1.08) translate(0.5%, 0.5%);
  }

  75% {
    transform: scale(1.12) translate(-0.5%, 0.5%);
  }

  100% {
    transform: scale(1.06) translate(0.5%, -0.5%);
  }
}

#home:hover .hero-bg {
  filter: brightness(0.4) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-3d-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, transparent 20%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 20%, black 50%, transparent 100%);
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 80px;
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform-style: preserve-3d;
}

/* Hero Logo Container with 3D Effects */
.hero-logo-container {
  position: relative;
  display: inline-block;
  padding: 30px;
  transform-style: preserve-3d;
}

.perspective-3d {
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease-out-expo);
}

.logo-glow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.logo-border-flow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  pointer-events: none;
}

.logo-border-flow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--gold) 25%,
      var(--rose-gold) 50%,
      var(--gold) 75%,
      transparent 100%);
  background-size: 400% 100%;
  animation: borderFlow 6s linear infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 2px;
  opacity: 0.6;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 400% 50%;
  }
}

.hero-logo {
  width: 420px;
  max-width: 85vw;
  height: auto;
  display: block;
  filter: drop-shadow(var(--glow-gold));
  transition: all 0.6s var(--ease-out-expo);
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-15px) translateZ(20px);
  }
}

.hero-logo:hover {
  filter: drop-shadow(var(--glow-gold-intense));
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  position: relative;
  opacity: 0.5;
}

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

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

.scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scroll-arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollArrow 2s ease-in-out infinite;
  opacity: 0;
}

.scroll-arrows span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-arrows span:nth-child(2) {
  animation-delay: 0.15s;
}

.scroll-arrows span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateY(-5px);
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Hero Decorations */
.hero-decor {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  opacity: 0.3;
}

.hero-decor-left {
  bottom: 30%;
  left: 0;
  transform: rotate(-30deg);
  animation: decorPulse 4s ease-in-out infinite;
}

.hero-decor-right {
  top: 30%;
  right: 0;
  transform: rotate(30deg);
  animation: decorPulse 4s ease-in-out infinite 2s;
}

@keyframes decorPulse {

  0%,
  100% {
    opacity: 0.1;
    width: 150px;
  }

  50% {
    opacity: 0.4;
    width: 250px;
  }
}

/* ═══════════════════════════════════════════
   SECTION SHARED STYLES
   ═══════════════════════════════════════════ */
.section {
  position: relative;
  padding: 140px 100px;
  overflow: hidden;
}

.section-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-rich) 50%, var(--black) 100%);
  pointer-events: none;
}

.section-bg-gradient.reverse {
  background: linear-gradient(180deg, var(--black-rich) 0%, var(--black) 50%, var(--black-rich) 100%);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gradient-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 25px;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-20deg);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-element.revealed .title-word,
.revealed .title-word {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.title-word:nth-child(1) {
  transition-delay: 0s;
}

.title-word:nth-child(2) {
  transition-delay: 0.1s;
}

.title-word:nth-child(3) {
  transition-delay: 0.2s;
}

.title-word:nth-child(4) {
  transition-delay: 0.3s;
}

.title-word:nth-child(5) {
  transition-delay: 0.4s;
}

.title-word:nth-child(6) {
  transition-delay: 0.5s;
}

.title-word.gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold), var(--rose-gold));
  margin: 35px 0;
  position: relative;
}

.divider-diamond {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--rose-gold);
  box-shadow: 0 0 10px var(--rose-gold);
}

.diamond-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 20px;
  opacity: 0.6;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal-element {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-100px) rotateY(10deg);
  transition: all 1.2s var(--ease-out-expo);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(100px) rotateY(-10deg);
  transition: all 1.2s var(--ease-out-expo);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1s var(--ease-out-expo);
}

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

/* ═══════════════════════════════════════════
   GLASS CARD EFFECTS
   ═══════════════════════════════════════════ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.5s var(--ease-out-expo);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card-large {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 168, 76, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glass-card:hover .card-glow {
  opacity: 1;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.glass-card:hover .card-shine {
  left: 150%;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
#about {
  background: var(--black-rich);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-text-area p.about-paragraph {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 2;
  transition: color 0.3s ease;
}

.about-text-area p.about-paragraph:hover {
  color: var(--text-primary);
}

.about-text-area p.about-paragraph:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 70px;
  float: left;
  line-height: 1;
  margin-right: 15px;
  margin-top: 5px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.about-image-area {
  position: relative;
  perspective: 1000px;
  padding: 30px;
}

.about-image-wrapper {
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  transition: all 0.6s var(--ease-out-expo);
  isolation: isolate;
  /* Creates stacking context */
}

/* Gold frame - top left offset */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold);
  z-index: -1;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* Rose gold frame - bottom right offset */
.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--rose-gold);
  z-index: -1;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(183, 110, 121, 0.2);
}

.about-image-wrapper:hover::before {
  top: -25px;
  left: -25px;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

.about-image-wrapper:hover::after {
  bottom: -25px;
  right: -25px;
  box-shadow: 0 0 40px rgba(183, 110, 121, 0.4);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9) saturate(0.9);
  transition: all 0.8s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

.image-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--gold), var(--rose-gold), var(--copper), var(--gold)) 1;
  pointer-events: none;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 2;
}

.about-image-wrapper:hover .image-frame {
  box-shadow: inset 0 0 30px rgba(201, 168, 76, 0.1);
}

.image-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 3;
}

.about-image-wrapper:hover .image-shine {
  left: 100%;
}

/* Decorative corner accents for about image */
.about-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 5;
  pointer-events: none;
}

.about-corner::before,
.about-corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  transition: all 0.4s ease;
}

.about-corner.tl {
  top: -8px;
  left: -8px;
}

.about-corner.tl::before {
  width: 20px;
  height: 3px;
  top: 0;
  left: 0;
}

.about-corner.tl::after {
  width: 3px;
  height: 20px;
  top: 0;
  left: 0;
}

.about-corner.tr {
  top: -8px;
  right: -8px;
}

.about-corner.tr::before {
  width: 20px;
  height: 3px;
  top: 0;
  right: 0;
}

.about-corner.tr::after {
  width: 3px;
  height: 20px;
  top: 0;
  right: 0;
}

.about-corner.bl {
  bottom: -8px;
  left: -8px;
}

.about-corner.bl::before {
  width: 20px;
  height: 3px;
  bottom: 0;
  left: 0;
}

.about-corner.bl::after {
  width: 3px;
  height: 20px;
  bottom: 0;
  left: 0;
}

.about-corner.br {
  bottom: -8px;
  right: -8px;
}

.about-corner.br::before {
  width: 20px;
  height: 3px;
  bottom: 0;
  right: 0;
}

.about-corner.br::after {
  width: 3px;
  height: 20px;
  bottom: 0;
  right: 0;
}

.about-image-wrapper:hover .about-corner::before,
.about-image-wrapper:hover .about-corner::after {
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}



/* Values Section */
.values-section {
  margin-top: 120px;
  position: relative;
  z-index: 2;
}

.values-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 50px;
  text-align: center;
}

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

.value-box {
  padding: 45px 30px;
  text-align: center;
  border-radius: 0;
  transition: all 0.6s var(--ease-out-expo);
}

.value-box:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-card), 0 0 30px rgba(183, 110, 121, 0.15);
}

.value-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(183, 110, 121, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.value-box:hover .value-glow {
  opacity: 1;
}

.value-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0.3);
  transition: all 0.5s var(--ease-out-expo);
}

.value-box:hover .value-icon {
  filter: grayscale(0) drop-shadow(0 0 20px var(--gold));
  transform: scale(1.2) rotateY(360deg);
}

.value-box h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.value-box p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION — HORIZONTAL SCROLL
   ═══════════════════════════════════════════ */
#services {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.services-header {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.scroll-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint-icon {
  display: inline-block;
  margin: 0 10px;
  color: var(--gold);
  animation: scrollHintPulse 1.5s ease-in-out infinite;
}

.scroll-hint-icon:first-child {
  animation-delay: 0s;
}

.scroll-hint-icon:last-child {
  animation-delay: 0.75s;
}

@keyframes scrollHintPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-3px);
  }
}

.scroll-hint-icon:last-child {
  animation-name: scrollHintPulseRight;
}

@keyframes scrollHintPulseRight {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}

/* Simple horizontal scroll container */
.horizontal-scroll-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
}

.horizontal-scroll-container {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  cursor: grab;
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.horizontal-scroll-container:active {
  cursor: grabbing;
}

.horizontal-scroll-track {
  display: flex;
  gap: 35px;
  padding: 20px 100px 40px;
  width: max-content;
}

.service-card {
  min-width: 340px;
  max-width: 340px;
  height: 460px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(183, 110, 121, 0.4);
  box-shadow: var(--shadow-card), 0 0 40px rgba(183, 110, 121, 0.15);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(183, 110, 121, 0.1), transparent);
  transition: height 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.service-card:hover::after {
  height: 100%;
}

.service-card-inner {
  position: relative;
  z-index: 2;
  padding: 45px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-number {
  position: absolute;
  top: 35px;
  right: 35px;
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: all 0.5s ease;
}

.service-card:hover .service-number {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-bottom: 35px;
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover .service-icon-wrapper {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: rotate(5deg);
}

.icon-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover .icon-ring {
  opacity: 0.5;
  transform: scale(1);
}

.service-icon {
  font-size: 26px;
  transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-line {
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
  margin-top: 25px;
  transition: width 0.5s var(--ease-out-expo);
}

.service-card:hover .service-line {
  width: 80px;
}

/* Scroll progress bar */
.scroll-progress-bar {
  width: calc(100% - 200px);
  height: 2px;
  background: rgba(201, 168, 76, 0.1);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  transition: width 0.1s ease-out;
  position: relative;
}

.scroll-progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
}

.scroll-progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold-shine);
  animation: progressGlow 3s ease-in-out infinite;
}

@keyframes progressGlow {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

/* ═══════════════════════════════════════════
   PROJECTS SECTION
   ═══════════════════════════════════════════ */
#projects {
  background: var(--black-rich);
}

.projects-tagline {
  font-family: var(--font-elegant);
  font-size: 19px;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 70px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  justify-items: center;
}

/* Center the last card if odd number of items */
.projects-grid .project-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.project-card {
  position: relative;
  height: 420px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transform-style: preserve-3d;
  transition: all 0.7s var(--ease-out-expo);
}

.project-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.project-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(1.0) saturate(1.0);
  transition: all 1s var(--ease-out-expo);
}

.project-card:hover .project-card-bg {
  transform: scale(1.1);
  filter: brightness(0.5) saturate(0.7);
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.project-card-info {
  transform: translateY(25px);
  transition: all 0.7s var(--ease-out-expo);
}

.project-card:hover .project-card-info {
  transform: translateY(0);
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.project-card:hover h3 {
  color: var(--gold);
}

.project-card .project-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s var(--ease-out-expo) 0.1s;
}

.project-card:hover .project-sub {
  opacity: 1;
  transform: translateY(0);
}

.project-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.6s var(--ease-out-expo) 0.2s;
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: translateX(0);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.project-card:hover .arrow-icon {
  transform: translateX(5px);
}

.project-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.8s ease;
  pointer-events: none;
}

.project-card:hover .project-shine {
  left: 100%;
}

/* ═══════════════════════════════════════════
   INQUIRY / CONTACT SECTION
   ═══════════════════════════════════════════ */
#inquiry {
  background: var(--black);
  position: relative;
}

.inquiry-glow-orb {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.inquiry-info .section-title {
  margin-bottom: 20px;
}

.inquiry-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.inquiry-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 25px;
  color: var(--text-secondary);
  font-size: 15px;
  transition: all 0.4s var(--ease-out-expo);
}

.inquiry-detail:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(10px);
}

.inquiry-detail-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.inquiry-detail:hover .inquiry-detail-icon {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow-gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 50px;
  position: relative;
}

.form-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.08), transparent 50%);
  pointer-events: none;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.form-group:focus-within label {
  opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--text-primary);
  font-family: var(--font-elegant);
  font-size: 16px;
  outline: none;
  transition: all 0.5s var(--ease-out-expo);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
  background: rgba(15, 15, 15, 0.8);
}

.input-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.5s var(--ease-out-expo);
}

.form-group:focus-within .input-focus-border {
  width: 100%;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 0l6 6 6-6z' fill='%23c9a84c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.form-group select option {
  background: var(--black-card);
  color: var(--text-primary);
}

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

.form-submit {
  padding: 18px 60px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
}

.form-submit .btn-text {
  position: relative;
  z-index: 2;
}

.form-submit .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.form-submit .btn-arrow {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow-gold);
}

.form-submit:hover .btn-shine {
  left: 100%;
}

.form-submit:hover .btn-arrow {
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 80px 100px 40px;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  line-height: 1.15;
}

.footer-brand-elysara {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.3));
  transition: all 0.4s ease;
}

.footer-brand-ventures {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--rose-gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.footer-brand-text:hover .footer-brand-elysara {
  filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.5));
}

.footer-brand-text:hover .footer-brand-ventures {
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
  max-width: 320px;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-muted);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-5px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-col a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

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

.footer-col a:hover::before {
  width: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  margin: 0 30px;
}

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 7000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.floating-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-btn {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(183, 110, 121, 0.4);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  color: var(--rose-gold);
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: visible;
}

.float-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  color: var(--black);
  box-shadow: 0 0 30px rgba(183, 110, 121, 0.5), 0 0 60px rgba(201, 168, 76, 0.3);
  transform: scale(1.15);
  border-color: transparent;
}

.float-icon {
  position: relative;
  z-index: 2;
}

.float-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3), transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.float-btn:hover .float-glow {
  transform: translate(-50%, -50%) scale(2);
}

.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--black-card);
  color: var(--gold);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transform: translateX(10px);
}

.float-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.scroll-top {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ═══════════════════════════════════════════
   POPUP CONTACT FORM
   ═══════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out-expo);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-form {
  padding: 60px;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(40px);
  transition: transform 0.6s var(--ease-out-expo);
}

.popup-overlay.active .popup-form {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.popup-close:hover {
  background: var(--gold);
  color: var(--black);
  transform: rotate(90deg);
}

.popup-form h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.popup-form .popup-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-bottom: 35px;
}

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

/* ═══════════════════════════════════════════
   MAGNETIC BUTTON EFFECT
   ═══════════════════════════════════════════ */
.magnetic-btn {
  transition: transform 0.3s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════
   SMOOTH GRAIN OVERLAY
   ═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .section {
    padding: 100px 60px;
  }

  .about-grid {
    gap: 60px;
  }

  .inquiry-grid {
    gap: 60px;
  }

  .footer-top {
    gap: 50px;
  }

  .horizontal-scroll-track {
    padding: 20px 60px 40px;
  }

  .scroll-progress-bar {
    width: calc(100% - 120px);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 80px 40px;
  }

  #navbar {
    padding: 15px 35px;
    gap: 40px;
  }

  #navbar.scrolled {
    padding: 12px 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-area {
    order: -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid .project-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .projects-grid .project-card:last-child:nth-child(2n+1) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .horizontal-scroll-track {
    padding: 20px 40px 40px;
  }

  .scroll-progress-bar {
    width: calc(100% - 80px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 25px;
  }

  #navbar {
    padding: 12px 20px;
    gap: 20px;
    max-width: 95%;
    top: 15px;
  }

  #navbar.scrolled {
    padding: 10px 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .brand-elysara {
    font-size: 18px;
  }

  .brand-ventures {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .hero-logo {
    width: 300px;
  }

  .unveil-logo.revealed {
    width: 320px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .value-box {
    padding: 30px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid .project-card:last-child:nth-child(2n+1) {
    grid-column: auto;
    max-width: 100%;
  }

  .project-card {
    height: 350px;
  }

  .service-card {
    min-width: 290px;
    max-width: 290px;
    height: 400px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-line {
    display: none;
  }

  .footer-brand-elysara {
    font-size: 28px;
  }

  .footer-brand-ventures {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .popup-form {
    padding: 40px 30px;
  }

  .horizontal-scroll-track {
    padding: 20px 25px 40px;
    gap: 25px;
  }

  .scroll-progress-bar {
    width: calc(100% - 50px);
  }

  .floating-buttons {
    right: 20px;
    bottom: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .cursor-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-box {
    padding: 25px 20px;
  }

  .hero-logo {
    width: 250px;
  }

  .unveil-logo.revealed {
    width: 280px;
  }

  .hero-logo-container {
    padding: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-label {
    letter-spacing: 5px;
    font-size: 10px;
  }

  .service-card {
    min-width: 260px;
    max-width: 260px;
    height: 380px;
  }

  footer {
    padding: 50px 20px 30px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none !important;
  }
}

/* ─── Form Success / Error Messages ─────────────────────────── */
.form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  display: none;
}
.form-message:not(:empty) {
  display: block;
}
.form-message--success {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
}
.form-message--error {
  background: rgba(220, 60, 60, 0.1);
  border: 1px solid rgba(220, 60, 60, 0.4);
  color: #e07070;
}