@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ========== DESIGN SYSTEM ========== */
:root {
  --bg: #0a0a0a;
  --fg: #e8e0d4;
  --gold: #c4973b;
  --gold-light: #d4b36a;
  --gold-dark: #8c6a24;
  --muted: #777068;
  --card-bg: #121212;
  --border: #2a2318;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Cormorant Garamond', serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.gradient-gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(196,151,59,0.3);
  cursor: pointer;
  transition: background 0.3s;
}
.btn-outline:hover { background: rgba(196,151,59,0.1); }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,151,59,0.3), transparent);
  margin: 80px 0;
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2,0,0,1), transform 0.8s cubic-bezier(0.2,0,0,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar-logo span { display: none; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,151,59,0.04) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero-logo { height: 140px; width: auto; margin: 0 auto 32px; }
.hero h1 {
  font-size: clamp(40px, 8vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; }
.hero p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* ========== COLLECTIONS ========== */
.collections { padding: 120px 0; }
.collections-header { margin-bottom: 80px; }
.collections-header h2 {
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.02em;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.collection-card { cursor: pointer; }
.collection-card .image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0,0,1);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
}
.collection-card .image-year {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.collection-card h3 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.collection-card:hover h3 { color: var(--gold); }
.collection-card .subtitle {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.collection-card .desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
}

/* ========== GALLERY ========== */
.gallery { padding: 120px 0; }
.gallery-header { margin-bottom: 64px; }
.gallery-header h2 {
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.02em;
}
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.2,0,0,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(10,10,10,0.1); }

@media (max-width: 960px) { .gallery-grid { columns: 2; } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ========== ABOUT ========== */
.about { padding: 120px 0; position: relative; }
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(196,151,59,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.about-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-title h2 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.about-title .role {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-text p:last-of-type { color: var(--muted); }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.about-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.about-quote h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.about-quote p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== CONTACT ========== */
.contact { padding: 120px 0; position: relative; }
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(196,151,59,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; text-align: center; }
.contact h2 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.contact p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.contact-links a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.contact-links a:hover { color: var(--gold); }

/* ========== FOOTER ========== */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,151,59,0.2), transparent);
  margin-bottom: 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { height: 32px; opacity: 0.6; }
.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
