:root {
  /* Colors - Modern Heritage Palette */
  --color-white: #FFFFFF;
  --color-bg: #FCFAF7;
  --color-maroon: #5E0B15;
  --color-maroon-light: #8E1624;
  --color-gold: #C5A059;
  --color-gold-muted: #D4AF37;
  --color-text: #1A1A1A;
  --color-text-muted: #555555;
  --color-border: #E5E5E5;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-unit: 8px;
  --container-max: 1440px;
}

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

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

h1, h2, h3, h4, .serif {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* Navigation */
.nav-announcement {
  background: var(--color-maroon);
  color: var(--color-gold);
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-main {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--color-gold);
}

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

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Hero Section */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #000;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1583391733956-3750e0ff4e8b?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding-left: 80px;
}

.hero-tagline {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
  background: var(--color-maroon);
  color: white;
}

.btn-primary:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--color-maroon);
}

/* Section Styling */
.section {
  padding: 100px 0;
}

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

.section-title {
  font-size: 42px;
  color: var(--color-maroon);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Blouse Gallery Grid */
.blouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-image {
  aspect-ratio: 3/4;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s scale(1.05);
}

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

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-gold);
  color: white;
  padding: 4px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-info {
  padding: 24px;
  text-align: center;
}

.product-title {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.product-price {
  font-weight: 600;
  color: var(--color-maroon);
}

.product-price span {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 8px;
  font-weight: 400;
}

/* Featured Collections (Split View) */
.featured-split {
  display: flex;
  height: 600px;
}

.split-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.split-side::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.split-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 400px;
}

.split-bg-1 { background: url('https://images.unsplash.com/photo-1620708670740-d990473974a3?auto=format&fit=crop&q=80&w=1000') center/cover; }
.split-bg-2 { background: url('https://images.unsplash.com/photo-1583391262775-9a288b70a228?auto=format&fit=crop&q=80&w=1000') center/cover; }

/* Trust Signals */
.trust-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.trust-item {
  max-width: 250px;
}

.trust-icon {
  margin-bottom: 20px;
  color: var(--color-gold);
}

.trust-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Footer */
footer {
  background: var(--color-maroon);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--color-gold);
}

.footer-links h5 {
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* Utils */
.placeholder-image {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maggam-texture {
  background-image: radial-gradient(var(--color-gold) 0.5px, transparent 0.5px);
  background-size: 10px 10px;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .blouse-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { height: 70vh; }
  .hero-content { padding-left: 20px; }
  .blouse-grid { grid-template-columns: 1fr; }
  .featured-split { flex-direction: column; height: auto; }
  .split-side { height: 400px; }
  .trust-items { flex-direction: column; gap: 40px; }
}
