/* ===== FONTS ===== */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Palette — warm earthy, fashion-forward */
  --bg: #F5F0E8;
  --bg-dark: #1C1917;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #B85C38;
  --accent-warm: #D4A574;
  --border: #D6CFC4;
  --card-bg: #EDE8DF;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== MANIFESTO STRIP ===== */
.manifesto-strip {
  background: var(--fg);
  color: var(--bg);
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 38ch;
  line-height: 1.7;
}

/* Atmosphere grid */
.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.atmos-card {
  background: var(--fg);
  color: var(--bg);
  padding: 1.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}

.atmos-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 9px
  );
}

.atmos-card:nth-child(2) { grid-column: span 2; }

.atmos-era {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.atmos-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 400;
}

/* ===== STORES ===== */
.stores {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 6rem 2rem;
}

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

.stores-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.stores-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  max-width: 22ch;
}

.stores-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}

.stores-divider {
  width: 1px;
  background: rgba(245,240,232,0.15);
  margin: 0 3rem;
}

.col-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.pain-list, .gain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pain-list li, .gain-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-muted);
}

.gain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-warm);
}

.gain-list li { color: #D4C9BB; }

/* ===== CURATORS ===== */
.curators {
  background: var(--bg);
  padding: 6rem 2rem;
}

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

.curators-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.curators-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  max-width: 22ch;
}

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

.curator-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
}

.curator-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.curator-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.curator-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--card-bg);
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto 3rem;
}

.closing-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.tagline-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg);
}

.tagline-sub {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 2.5rem 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-sub {
    max-width: none;
  }

  .stores-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stores-divider {
    display: none;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .atmos-card:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .stores, .curators { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}