:root {
  --gold-primary: #D4AF37;
  --gold-secondary: #FFD700;
  --gold-light: #F7EFD7;
  --dark-charcoal: #1a1a1a;
  --deep-navy: #0A1931;
  --warm-white: #F8F5F0;
  --soft-beige: #E8DFD6;
  --rich-burgundy: #722F37;
  --african-earth: #8B4513;
  --shadow-elegant: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 12px 40px rgba(212, 175, 55, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--dark-charcoal);
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-beige) 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-charcoal);
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--african-earth));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--deep-navy);
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--african-earth));
}

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

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-primary);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-logo {
  width: 140px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--warm-white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover {
  color: var(--gold-primary);
}

.nav a:hover::before {
  width: 80%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, 
    rgba(10, 25, 49, 0.9) 0%, 
    rgba(114, 47, 55, 0.8) 50%, 
    rgba(212, 175, 55, 0.7) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-weight: 300;
}

.lead {
  font-size: 1.3rem;
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Banner */
.banner-section {
  text-align: center;
  padding: 40px 0 0 0;
  margin: 0;
}

.banner-image {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.3s ease;
}

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

/* Presentation Section */
.presentation {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.brand-story {
  background: linear-gradient(135deg, var(--warm-white), var(--soft-beige));
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--gold-light);
}

.brand-story h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--deep-navy);
}

.brand-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-charcoal);
  margin-bottom: 15px;
}

.value-proposition {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--deep-navy);
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

/* Collections Grid */
.section {
  padding: 80px 0;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid.cards .card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-elegant);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
  position: relative;
}

.grid.cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--african-earth));
}

.grid.cards .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.grid.cards .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid.cards .card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--african-earth));
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.pdf-indicator {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery figure {
  margin: 0;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
}

.gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  padding: 15px;
  font-size: 0.9rem;
  color: var(--dark-charcoal);
  text-align: center;
  background: var(--gold-light);
}

/* PDF List */
.pdf-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-bottom: 50px;
}

.pdf-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-elegant);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
  text-decoration: none;
}

.pdf-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.pdf-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-primary), var(--african-earth));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
}

.pdf-info {
  flex: 1;
}

.pdf-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-charcoal);
  font-size: 1.1rem;
}

.pdf-size {
  font-size: 0.85rem;
  color: #666;
}

/* Footer */
footer {
  margin-top: 80px;
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--dark-charcoal), var(--deep-navy));
  color: var(--warm-white);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--african-earth));
}

footer .cols {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr;
}

footer .badge {
  background: var(--gold-primary);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  display: inline-block;
  padding: 10px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  color: var(--gold-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--dark-charcoal);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  
  .grid.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav {
    gap: 15px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero {
    padding: 60px 0;
  }
  
  .banner-image {
    width: 95%;
  }
  
  .value-proposition {
    grid-template-columns: 1fr;
  }
  
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  footer .cols {
    grid-template-columns: 1fr;
  }
  
  .pdf-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  
  .brand-logo {
    width: 120px;
  }
  
  .nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
}
