/* ══════════════════════════════════════════════════════════
   OPULENT — LUXURY JEWELRY MAISON
   ══════════════════════════════════════════════════════════ */

:root {
  --black: #0b0b0b;
  --deep: #050505;
  --gold: #d4af37;
  --gold-light: #f0d47a;
  --cream: #f7f1ea;
  --muted: #bdb6ac;
  
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 32px 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0) 100%);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(247, 241, 234, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--cream);
}

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

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.1) saturate(0.9);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(11,11,11,0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
  animation: fadeInUp 1.2s ease 0.3s backwards;
}

.hero-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 200;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 16px 50px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 241, 234, 0.3);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   SIGNATURE PIECES
   ══════════════════════════════════════════════════════════ */

.signature {
  padding: 140px 80px;
  background: var(--deep);
}

.signature-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.signature h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.lead {
  font-size: 18px;
  font-weight: 200;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.8;
}

.pieces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.piece {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.piece img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,0.7);
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.9) saturate(0.95);
}

.piece:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.piece-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.piece:hover .piece-info {
  transform: translateY(0);
  opacity: 1;
}

.piece-info h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}

.piece-info p {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════ */

.about-section {
  padding: 140px 80px;
  background: var(--black);
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 100px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.about-text p {
  font-size: 17px;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(247, 241, 234, 0.8);
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* ══════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════ */

.gallery {
  padding: 100px 80px;
  background: var(--deep);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,0.65);
  transition: transform 0.7s ease, box-shadow 0.5s ease;
}

.gallery-grid img:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 100px rgba(212, 175, 55, 0.3);
}

/* ══════════════════════════════════════════════════════════
   TEASER (OLD SECTION - HIDING FOR NOW)
   ══════════════════════════════════════════════════════════ */

.teaser {
  display: none;
}

.about {
  display: none;
}

.gallery-section {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   HIRE SECTION
   ══════════════════════════════════════════════════════════ */

.hire {
  padding: 140px 80px;
  background: var(--black);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.hire h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hire .lead {
  margin-bottom: 80px;
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.hire .case {
  background: rgba(255,255,255,0.02);
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  text-align: left;
}

.hire .case:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.hire .case h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.hire .case p {
  font-size: 15px;
  font-weight: 200;
  color: rgba(247, 241, 234, 0.75);
  line-height: 1.8;
}

.contact-cta {
  font-size: 16px;
  color: var(--muted);
}

.link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link:hover {
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */

.footer {
  padding: 60px 80px;
  text-align: center;
  color: rgba(247, 241, 234, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .nav-inner {
    padding: 0 40px;
  }
  
  .signature,
  .about-section,
  .gallery,
  .hire,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .pieces-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .hire-grid {
    grid-template-columns: 1fr;
  }
  
  .pieces-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}
