:root {
  --black: #0a0a0a;
  --cream: #f5f0e8;
  --nude: #d4b89c;
  --mocha: #8b6f5e;
  --chrome: #c0c0c0;
  --bg: #0a0a0a;
  --fg: #f5f0e8;
  --accent: #d4b89c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  background: radial-gradient(ellipse at 50% 80%, rgba(212,184,156,0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 800px;
}

.hero-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--mocha);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(5rem, 18vw, 14rem);
  color: var(--cream);
  letter-spacing: -0.02em;
}

.title-outline {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--nude);
  margin: 0 auto 2rem;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--nude));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ========== MANIFESTO ========== */
.manifesto {
  padding: 8rem 2rem;
  border-top: 1px solid rgba(212,184,156,0.1);
}

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

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 4rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

.manifesto-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  margin-bottom: 1.5rem;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

/* ========== COLLECTION ========== */
.collection {
  padding: 8rem 2rem;
  border-top: 1px solid rgba(212,184,156,0.1);
}

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

.collection-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 4rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-item {
  border: 1px solid rgba(212,184,156,0.12);
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.collection-item:hover {
  border-color: rgba(212,184,156,0.35);
}

.item-swatch {
  width: 100%;
  height: 180px;
  margin-bottom: 1.5rem;
}

.swatch-black {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  border: 1px solid rgba(245,240,232,0.08);
}

.swatch-cream {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 50%, #f5f0e8 100%);
}

.swatch-mocha {
  background: linear-gradient(135deg, #8b6f5e 0%, #a0826e 50%, #8b6f5e 100%);
}

.item-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.item-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
}

/* ========== MOOD ========== */
.mood {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(212,184,156,0.1);
  overflow: hidden;
}

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

.mood-words {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.mood-word {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.mood-word:hover {
  opacity: 1;
}

.mood-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nude);
  opacity: 0.4;
}

/* ========== CLOSING ========== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212,184,156,0.1);
  background: radial-gradient(ellipse at 50% 20%, rgba(212,184,156,0.04) 0%, transparent 50%);
}

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

.closing-face {
  width: 80px;
  margin: 0 auto 3rem;
  color: var(--nude);
  opacity: 0.5;
}

.face-silhouette {
  width: 100%;
  height: auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.closing-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212,184,156,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.footer-location {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.1em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  .mood-words {
    gap: 1rem;
  }
  
  .mood-word {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 4rem 1.5rem;
  }
  
  .manifesto,
  .collection,
  .closing {
    padding: 5rem 1.5rem;
  }
  
  .mood {
    padding: 4rem 1.5rem;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .title-line {
    font-size: 4.5rem;
  }
  
  .title-outline {
    -webkit-text-stroke: 1.5px var(--cream);
  }
  
  .item-swatch {
    height: 140px;
  }
}