:root {
  --cream: #F9F6F1;
  --soft-black: #1E1E1E;
  --wine-red: #7B2C2C;
  --champagne-gold: #D6C4A8;
  --white-gold: #EDEAE3;
  --text-secondary: #6B6B6B;
  --border-subtle: #E5E2DD;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--soft-black);
  line-height: 1.6;
  font-weight: 400;
}

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

/* Header */
header {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4rem;
  position: relative;
}

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

.brand-mark {
  font-family: 'Aboreto', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Section Styling */
section {
  margin-bottom: 5rem;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-family: 'Aboreto', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Brand Ethos */
.ethos-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ethos-headline {
  font-family: 'Aboreto', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--wine-red);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.ethos-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--soft-black);
  font-weight: 300;
}

/* Brand Archetypes */
.archetypes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.archetype-card {
  background: var(--white-gold);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archetype-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.archetype-title {
  font-family: 'Aboreto', serif;
  font-size: 1.8rem;
  color: var(--wine-red);
  margin-bottom: 1rem;
}

.archetype-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Voice Guide */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.voice-section {
  background: var(--white-gold);
  border-radius: 8px;
  padding: 2.5rem;
}

.voice-title {
  font-family: 'Aboreto', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--wine-red);
}

.voice-title.do {
  color: var(--champagne-gold);
}

.voice-list {
  list-style: none;
  margin-bottom: 2rem;
}

.voice-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.voice-list li:last-child {
  border-bottom: none;
}

.voice-example {
  background: var(--cream);
  border-left: 4px solid var(--wine-red);
  padding: 1.5rem;
  margin-top: 2rem;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Color Palette */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.color-card {
  text-align: center;
  background: var(--white-gold);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
}

.color-swatch {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--border-subtle);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-name {
  font-family: 'Aboreto', serif;
  font-size: 1.2rem;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
}

.color-hex {
  font-family: 'Inter', monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Typography */
.typography-examples {
  margin-top: 3rem;
}

.type-example {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white-gold);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.type-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.type-h1 {
  font-family: 'Aboreto', serif;
  font-size: 3rem;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.type-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--soft-black);
  line-height: 1.7;
  font-weight: 300;
}

/* Iconography */
.iconography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.icon-placeholder {
  background: var(--white-gold);
  border: 2px dashed var(--border-subtle);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s ease;
}

.icon-placeholder:hover {
  border-color: var(--champagne-gold);
}

.icon-title {
  font-family: 'Aboreto', serif;
  font-size: 1.3rem;
  color: var(--wine-red);
  margin-bottom: 1rem;
}

.icon-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sample Components */
.component-examples {
  margin-top: 3rem;
}

.hero-banner {
  background: linear-gradient(135deg, var(--white-gold) 0%, var(--cream) 100%);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid var(--border-subtle);
}

.hero-text {
  font-family: 'Aboreto', serif;
  font-size: 2.5rem;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--white-gold);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-placeholder {
  width: 100%;
  height: 200px;
  background: var(--cream);
  border: 2px dashed var(--border-subtle);
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.product-title {
  font-family: 'Aboreto', serif;
  font-size: 1.3rem;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--wine-red);
  font-weight: 500;
  font-size: 1.1rem;
}

.callout-quote {
  background: var(--wine-red);
  color: var(--cream);
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.quote-text {
  font-family: 'Aboreto', serif;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Brand Status */
.status-section {
  background: var(--soft-black);
  color: var(--cream);
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 4rem;
}

.status-tagline {
  font-family: 'Aboreto', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--champagne-gold);
}

.status-text {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Footer */
footer {
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-secondary);
}

/* Loading State */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Language Selector */
.language-selector {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.language-selector select {
  background-color: var(--white-gold);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--soft-black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector select:hover {
  background-color: var(--cream);
  border-color: var(--champagne-gold);
}

.language-selector select:focus {
  outline: none;
  border-color: var(--wine-red);
  box-shadow: 0 0 0 2px rgba(123, 44, 44, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
      padding: 0 1rem;
  }

  .brand-mark {
      font-size: 2rem;
  }

  .section-title {
      font-size: 2rem;
  }

  .ethos-headline {
      font-size: 2.5rem;
  }

  .voice-grid {
      grid-template-columns: 1fr;
  }

  .hero-text {
      font-size: 2rem;
  }

  .quote-text {
      font-size: 1.5rem;
  }

  .language-selector {
      top: 1rem;
      right: 1rem;
  }

  .language-selector select {
      padding: 0.4rem 0.8rem;
      font-size: 0.8rem;
  }
}