:root {
  --bg-color: #050505;
  --surface-color: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.06);
  --text-primary: #f2f2f2;
  --text-secondary: #999;
  --accent-color: #c9a473; /* Golden muted accent */
  --highlight-color: rgba(201, 164, 115, 0.2);
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --glow-color: rgba(201, 164, 115, 0.15);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.5rem; }

p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Background & Ambient Glows */
.ambient-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: radial-gradient(circle at 50% 0%, rgba(20,20,30,0.8), var(--bg-color) 70%);
  z-index: -2;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
  animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(201,164,115,0.1), transparent 70%);
  top: -10%; left: -10%;
}

.orb-2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(60,80,120,0.1), transparent 70%);
  bottom: -20%; right: -10%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Buttons & Badges */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-color);
}
.btn-primary:hover {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 0 20px var(--glow-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: var(--surface-color);
  border-color: var(--text-secondary);
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  color: var(--accent-color);
  margin-bottom: 20px;
}

.highlight-text {
  font-style: italic;
  color: var(--accent-color);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--surface-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

/* Navigation */
.site-header {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  z-index: 100;
}

.header-brand {
  text-decoration: none;
  color: var(--text-primary);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Yeseva One', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(201, 164, 115, 0.3));
  transition: filter 0.4s ease, transform 0.4s ease, letter-spacing 0.4s ease;
}

.brand-name:hover {
  filter: drop-shadow(0 0 20px rgba(201, 164, 115, 0.6));
  letter-spacing: 1.5px;
  transform: scale(1.01);
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-top: 4px;
  margin-left: 2px;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Sections */
.section {
  padding: 120px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

/* Hero */
.hero-modern {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 100px 5% 0;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  border-radius: 24px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  padding: 15px 25px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  animation: float 6s infinite ease-in-out;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.about-panel, .designer-panel {
  padding: 50px;
}

.designer-media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.designer-media img:hover {
  filter: grayscale(0%);
}

/* Hover Lift */
.hover-lift:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hover-lift:hover .card-img img {
  transform: scale(1.05);
}

/* Gallery / Spaces */
.modern-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card-img {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
}

.card-content {
  position: absolute;
  bottom: 0;
  padding: 40px;
  z-index: 2;
}

.card-content p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}

/* Objects Grid */
.object-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.object-card {
  padding: 20px;
  text-align: center;
}

.object-card .card-img {
  height: 40vh;
  border-radius: 12px;
}

.object-card figcaption {
  margin-top: 20px;
}

.object-card span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Modern */
.contact-modern {
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-box {
  padding: 80px 40px;
  width: 100%;
  max-width: 800px;
}

.huge-btn {
  font-size: clamp(1.2rem, 3vw, 2rem);
  padding: 20px 50px;
  border-radius: 50px;
  margin-top: 40px;
  font-family: var(--font-serif);
}

/* Footer */
.site-footer {
  margin: 0 5% 40px;
  padding: 30px 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.sec-badge, .seo-badge {
  background: rgba(0,255,0,0.1);
  color: #aaffaa;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  border: 1px solid rgba(0,255,0,0.2);
}

.seo-badge {
  background: rgba(100,150,255,0.1);
  color: #aaccff;
  border-color: rgba(100,150,255,0.2);
}

@media (max-width: 1024px) {
  .hero-modern, .about-grid { grid-template-columns: 1fr; }
  .hero-image-wrapper { height: 50vh; }
  .modern-gallery, .object-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; } /* Could add a hamburger menu if needed */
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}

/* Initial state for GSAP */
.g-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Cinematic Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

#preloader .brand-name {
  opacity: 1;
}

/* Hide default cursor across entire site */
html, body, a, button, img {
  cursor: none !important;
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1), height 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease, border 0.3s ease;
  box-shadow: 0 0 15px rgba(201, 164, 115, 0.6);
}

.cursor-dot.hovered {
  width: 45px;
  height: 45px;
  background: rgba(201, 164, 115, 0.1);
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 25px rgba(201, 164, 115, 0.3);
}

/* Contact Form Styles */
.volera-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  position: relative;
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating Label Magic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -20px;
  font-size: 0.75rem;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 1px solid var(--accent-color);
}

.volera-form .btn-primary {
  align-self: flex-start;
  margin-top: 10px;
  background: transparent;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 40px;
  }
}
