*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #883CF0;
  --gold-light: #7c3aedb7;
  --gold-dark: #b29dce;
  --black: #191127;
  --charcoal: #180f26;
  --smoke: #2a2a2a;
  --ash: #e0e0e0;
  --cream: #f5f0e8;
  --white: #fefefe;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}

/* Custom cursor */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  mix-blend-mode: difference;
}

/* Loader */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-line {
  width: 200px; height: 1px;
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.5s ease-in-out forwards;
}
.loader-text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 20px;
  animation: fadeIn 0.5s ease 0.3s both;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 50px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, #180f26 0%, transparent 100%);
  transition: background 0.4s ease;
}
nav.scrolled {
  background: #180f26;
  backdrop-filter: blur(20px);
  padding: 18px 50px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
}
.logo span { color: var(--cream); font-weight: 400; }
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero {
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(171, 110, 201, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(175, 110, 201, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(166, 110, 201, 0.03) 0%, transparent 50%);
}
.hero-grain {
  position: absolute; inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
  animation: slideUp 1s ease 1.8s both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--cream);
  opacity: 0;
  animation: slideUp 1s ease 2s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ash);
  margin-top: 30px;
  letter-spacing: 1px;
  opacity: 0;
  animation: slideUp 1s ease 2.2s both;
}
.hero-cta {
  margin-top: 50px;
  opacity: 0;
  animation: slideUp 1s ease 2.4s both;
}
.hero-cta a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  padding: 16px 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero-cta a::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.hero-cta a:hover { color: var(--black); }
.hero-cta a:hover::before { transform: translateY(0); }
.hero-cta a span { position: relative; z-index: 1; }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: slideUp 1s ease 2.8s both;
}
.scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
}
.scroll-line {
  width: 1px; height: 50px;
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Sections common */
section {
  padding: 120px 50px;
  position: relative;
}
.section-divider {
  width: 60px; height: 1px;
  background: var(--gold-dark);
  margin: 0 auto 60px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About / Philosophy */
.philosophy {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.philosophy-text .label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
}
.philosophy-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ash);
  font-weight: 300;
}
.philosophy-visual {
  position: relative;
  height: 500px;
}
.philosophy-visual .frame {
  position: absolute;
  border: 1px solid var(--gold-dark);
  opacity: 0.4;
}
.philosophy-visual .frame-1 {
  top: 0; left: 10%;
  width: 80%; height: 80%;
  animation: floatFrame 8s ease infinite;
}
.philosophy-visual .frame-2 {
  top: 10%; left: 0;
  width: 80%; height: 80%;
  animation: floatFrame 8s ease infinite 2s;
}
.philosophy-visual .frame-3 {
  top: 5%; left: 5%;
  width: 80%; height: 80%;
  animation: floatFrame 8s ease infinite 4s;
}
.philosophy-visual .center-emblem {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  letter-spacing: 10px;
}
@keyframes floatFrame {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(5px, -8px) rotate(0.5deg); }
  66% { transform: translate(-3px, 5px) rotate(-0.5deg); }
}

/* Collection / Services */
.collection {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}
.collection-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.collection-header .label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.collection-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}
.collection-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.collection-card {
  background: #23133a;
  border: 1px solid #3a1c63;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}
.collection-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.collection-card:hover::before { transform: scaleX(1); }
.collection-card:hover {
  background: #1f1232;
  border-color: #5e309d;
  transform: translateY(-5px);
}
.card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}
.collection-card:hover .card-number { opacity: 0.5; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.card-desc {
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.7;
  font-weight: 300;
}
.card-link {
  display: inline-block;
  margin-top: 25px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.3s ease;
}
.card-link:hover { letter-spacing: 5px; }

/* Stats marquee */
.stats-band {
  padding: 60px 0;
  border-top: 1px solid #3a1c63;
  border-bottom: 1px solid #3a1c63;
  overflow: hidden;
  position: relative;
}
.stats-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.stat-item {
  display: flex; align-items: baseline; gap: 15px;
  padding: 0 60px;
  white-space: nowrap;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonials .label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
}
.testimonial-slider {
  position: relative;
  min-height: 250px;
}
.testimonial-item {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
}
.testimonial-item.active {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 30px;
}
.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  font-style: normal;
}
.testimonial-author {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ash);
  margin-top: 5px;
}
.testimonial-dots {
  display: flex; gap: 12px;
  justify-content: center;
  margin-top: 50px;
}
.testimonial-dots button {
  width: 30px; height: 2px;
  background: var(--smoke);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dots button.active {
  background: var(--gold);
  width: 50px;
}

/* Gallery / Parallax */
.gallery {
  padding: 0;
  position: relative;
  height: 60vh;
  display: flex;
  overflow: hidden;
}
.gallery-strip {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #3a1c63;
  transition: flex 0.6s ease;
}
.gallery-strip:last-child { border-right: none; }
.gallery-strip:hover { flex: 2; }
.gallery-strip-bg {
  position: absolute; inset: -20px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: brightness(0.5) saturate(0.8);
}
.gallery-strip:hover .gallery-strip-bg {
  transform: scale(1.05);
  filter: brightness(0.7) saturate(1);
}
.gallery-strip-content {
  position: absolute;
  bottom: 40px; left: 30px; right: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.gallery-strip:hover .gallery-strip-content {
  opacity: 1;
  transform: translateY(0);
}
.gallery-strip-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.gallery-strip-content p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Gallery gradient backgrounds */
.gallery-strip:nth-child(1) .gallery-strip-bg {
  background: linear-gradient(135deg, #2a1f0f 0%, #1a1408 50%, #0f0d08 100%);
}
.gallery-strip:nth-child(2) .gallery-strip-bg {
  background: linear-gradient(135deg, #0f1a1a 0%, #0a1414 50%, #080f0f 100%);
}
.gallery-strip:nth-child(3) .gallery-strip-bg {
  background: linear-gradient(135deg, #1a0f1a 0%, #140a14 50%, #0f080f 100%);
}
.gallery-strip:nth-child(4) .gallery-strip-bg {
  background: linear-gradient(135deg, #1a1a0f 0%, #14140a 50%, #0f0f08 100%);
}
.gallery-strip:nth-child(5) .gallery-strip-bg {
  background: linear-gradient(135deg, #0f0f1a 0%, #0a0a14 50%, #08080f 100%);
}

/* Newsletter / Contact */
.contact {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 150px 50px;
}
.contact .label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 20px;
}
.contact p {
  font-size: 1.1rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #3a1c63;
}
.contact-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  outline: none;
}
.contact-form input::placeholder {
  color: var(--ash);
  font-style: italic;
}
.contact-form button {
  background: var(--gold);
  border: none;
  padding: 18px 30px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: var(--gold-light);
}

/* Footer */
footer {
  border-top: 1px solid #3a1c63;
  padding: 60px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
}
.footer-links {
  display: flex; gap: 30px; list-style: none;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--ash);
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating particles */
.particles {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .philosophy { grid-template-columns: 1fr; gap: 60px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .gallery { height: auto; flex-direction: column; }
  .gallery-strip { height: 200px; border-right: none; border-bottom: 1px solid #3a1c63; }
  .gallery-strip:hover { flex: 1; }
  .gallery-strip-content { opacity: 1; transform: none; }
  nav { padding: 20px 30px; }
  section { padding: 80px 30px; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 640px) {
  .collection-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .contact-form { flex-direction: column; }
}

/* Success message */
.success-msg {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--charcoal);
  border: 1px solid var(--gold);
  padding: 40px 60px;
  text-align: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.success-msg.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.success-msg h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.success-msg p {
  font-family: var(--font-body);
  color: var(--ash);
}