:root {
  --primary-gold: #b76e79; /* Luxury Rose Gold */
  --secondary-blush: #e5c9c3; /* Elegant Blush */
  --accent-deep: #7c4b52; /* Deep Rose Accent */
  --bg-obsidian: #0a0a0a; /* Matte Black Base */
  --bg-card: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #e0e0e0;
  --text-dim: #a0a0a0;
  --glow-gold: rgba(183, 110, 121, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: var(--bg-obsidian);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Three.js Canvas Container */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Layout */
.main-wrapper {
  position: relative;
  z-index: 10; /* Above 3D effects */
}

section {
  min-height: 100vh;
  padding: 10vh 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
}

.sculptural-text {
  font-size: clamp(3rem, 8vw, 8rem);
  text-transform: uppercase;
  letter-spacing: -2px;
  background: linear-gradient(to bottom, #fff 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  display: block;
}

/* Glassmorphism Cards */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem;
  transition: all 0.5s ease;
}

.glass-panel:hover {
  border-color: var(--primary-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-gold);
}

/* Buttons */
.magnetic-btn {
  display: inline-block;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: var(--primary-gold);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
  margin-top: 2rem;
}

.magnetic-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(183, 110, 121, 0.5);
}

/* Project Cards */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 4rem;
}

.project-card {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transition: all 0.5s ease;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
}

/* Specific Section adjustments */
#hero {
  text-align: left;
}

/* Smooth Scroll Helper */
.lenis-stopped {
  overflow: hidden;
}
