:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --red: #c41e3a;
  --red-light: #e63956;
  --gold: #c9a84c;
  --white: #ffffff;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

body {
  background: var(--cream);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 20px;
  margin-bottom: 40px;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--red-light);
  font-style: italic;
}

.lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 48px;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.7;
  position: relative;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.15);
}

/* Section Tag */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

/* Features */
.features {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 2px;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Collections */
.collections {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 24px;
}

.collections-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.collections .section-tag {
  color: var(--gold);
}

.collections h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.collections-desc {
  color: rgba(245, 240, 232, 0.7);
  max-width: 650px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  background: var(--navy-light);
  padding: 36px 28px;
  border-radius: 2px;
  border: 1px solid rgba(245, 240, 232, 0.08);
  transition: border-color 0.2s;
}

.collection-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.collection-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.25);
  margin-bottom: 16px;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}

.collection-card p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-values {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.value {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 20px;
  border: 1.5px solid var(--navy);
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 12px;
}

.footer-contact {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .collection-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .closing-values {
    flex-direction: column;
    align-items: center;
  }
  
  .hero {
    padding: 60px 20px 80px;
  }
  
  .features {
    padding: 64px 20px;
  }
  
  .collections {
    padding: 64px 20px;
  }
  
  .closing {
    padding: 64px 20px;
  }
}