:root {
  --bg: #1a1a1a;
  --bg-2: #222222;
  --cream: #f0ebe0;
  --cream-dim: #c8c2b5;
  --gold: #c9a84c;
  --gold-dim: #8a6e2f;
  --ink: #0e0e0e;
  --text: #e8e3d9;
  --text-muted: #9a9488;
  --rule: rgba(201,168,76,0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 5vw;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.03) 79px, rgba(201,168,76,0.03) 80px);
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.hero-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.hero-wordmark-arch {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.hero-wordmark-drop {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-right {
  padding-left: 2rem;
}
.hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 460px;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 100px;
}

/* ─── SECTION LABEL ─── */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ─── COLLECTIONS ─── */
.collections {
  background: var(--bg-2);
  padding: 6rem 5vw;
}
.collections-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.collection-card {
  background: var(--bg-2);
  padding: 3rem 2.5rem;
  position: relative;
}
.card-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.card-era {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--rule);
  color: var(--gold-dim);
}

/* ─── TIMELINE ─── */
.timeline {
  background: var(--bg);
  padding: 6rem 5vw;
  border-top: 1px solid var(--rule);
}
.timeline-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.timeline-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.tl-item {
  padding: 2rem 1.5rem 2rem 0;
  border-left: 1px solid var(--rule);
  padding-left: 2rem;
}
.tl-item:first-child { padding-left: 0; border-left: none; }
.tl-year {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
}
.tl-active .tl-year { color: var(--gold); }
.tl-done .tl-year { color: var(--text-muted); }
.tl-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.tl-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tl-status {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--rule);
}
.tl-done .tl-status { color: var(--text-muted); }
.tl-item:not(.tl-active):not(.tl-done) .tl-status { color: var(--text-muted); border-color: rgba(154,148,136,0.3); }

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg-2);
  padding: 8rem 5vw;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-deco {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 3rem;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 3rem 5vw;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 380px;
  text-align: right;
  line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { padding-left: 0; border-top: 1px solid var(--rule); padding-top: 3rem; }
  .hero-lede { max-width: 100%; }
  .collections-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tl-item { border-left: none; border-top: 1px solid var(--rule); padding: 1.5rem 0; }
  .tl-item:first-child { border-top: none; }
  .footer-inner { flex-direction: column; }
  .footer-note { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 6vw; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem; }
  .hero-wordmark-arch, .hero-wordmark-drop { font-size: clamp(4rem, 16vw, 6rem); }
}