:root {
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa8c2c;
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 16px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

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

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.about-image {
  position: relative;
  height: 500px;
}

.gold-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: 0;
}

.about-img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--black-light);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 4px;
}

/* ===== COLLECTIONS ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.collection-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: block;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  opacity: 0.8;
  transition: var(--transition);
}

.collection-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.collection-info h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.collection-info span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.collection-info span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.collection-card:hover .collection-overlay {
  opacity: 0.6;
}

.collection-card:hover .collection-info span::after {
  width: 100%;
}

/* ===== VISIT / MAP ===== */
.visit {
  background: var(--black-light);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.info-group {
  margin-bottom: 32px;
}

.info-group h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.info-group p {
  color: var(--gray);
  font-size: 1.1rem;
}

.visit-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.footer p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.review-card {
  background: var(--black-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--gray);
  flex-grow: 1;
}

.review-author {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: right;
}

/* ===== ADVANCED FEATURES ===== */

/* Custom Cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, .magnetic-btn, .collection-card, .review-card {
    cursor: none;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  display: none;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor, .custom-cursor-follower {
    display: block;
  }
}

.custom-cursor.hover {
  width: 12px;
  height: 12px;
  background-color: var(--white);
}

.custom-cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

/* 3D Tilt Base */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  will-change: transform;
}

/* ===== ANIMATIONS ===== */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.5rem; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 400px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--black-light);
    flex-direction: column;
    padding: 100px 40px;
    transition: var(--transition);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-title { font-size: 2.8rem; }
  .collection-grid, .reviews-grid { grid-template-columns: 1fr; }
  .collection-card { height: 400px; }
}
