:root {
  --color-burgundy-dark: #1a050a;
  --color-burgundy: #3d0c18;
  --color-blush: #eac5c2;
  --color-gold-light: #f9f0d7;
  --color-gold: #c5a059;
  --color-gold-dark: #8b6d34;
  --text-main: #fcfcfc;
  --text-muted: #dcdcdc;
  
  --glass-bg: rgba(61, 12, 24, 0.4);
  --glass-border: rgba(234, 197, 194, 0.15);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-burgundy-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

a {
  text-decoration: none;
}

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

/* Ambient Background */
.ambient-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: radial-gradient(circle at 15% 50%, rgba(197, 160, 89, 0.08), transparent 40%),
              radial-gradient(circle at 85% 30%, rgba(234, 197, 194, 0.05), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* Typography & Gradients */
.gold-gradient-text {
  background: linear-gradient(45deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(197, 160, 89, 0.3);
}

/* Glassmorphism */
.glass-panel, .glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Header */
header {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--color-blush);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-video-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(26, 5, 10, 0.4), var(--color-burgundy-dark));
}

.hero-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-content .glass-panel {
  padding: 50px;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.sub-heading {
  font-size: 1.2rem;
  color: var(--color-blush);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 1px;
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(197, 160, 89, 0.4);
}

.icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(234, 197, 194, 0.2), rgba(197, 160, 89, 0.1));
  width: 80px; height: 80px;
  line-height: 80px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--color-blush);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Gallery Masonry */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Split Layout (Includes & How To) */
.split-layout {
  display: flex;
  gap: 50px;
}

.includes-box, .how-to-box {
  flex: 1;
}

.includes-box {
  padding: 50px;
}

.custom-list {
  list-style: none;
  margin-top: 30px;
}

.custom-list li {
  margin-bottom: 18px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
}

.custom-list li span {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* Timeline */
.timeline {
  margin-top: 30px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: var(--glass-border);
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}

.dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-burgundy);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  color: var(--color-gold-light);
  z-index: 1;
}

.timeline-item h4 {
  font-size: 1.2rem;
  color: var(--color-blush);
  margin-bottom: 5px;
  padding-top: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.footer h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.footer p {
  color: var(--color-blush);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.pulse-anim {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Responsive */
@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    margin-top: 0 !important;
  }
}
@media (max-width: 600px) {
  .hero-content h1 { font-size: 2.5rem; }
  .gallery-masonry { grid-template-columns: 1fr; }
}
