:root {
  --cream: #F5EFE5;
  --cream-deep: #EBE2D2;
  --walnut: #3C2A1A;
  --brass: #A88A5C;
  --brass-light: #C9A876;
  --charcoal: #1A1411;
  --text-muted: #6B5D4E;
  --hairline: rgba(60, 42, 26, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* === Header === */
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 36px 72px;
  border-bottom: 1px solid var(--hairline);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.logo-mark {
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
  letter-spacing: 0.38em;
  font-weight: 400;
  color: var(--charcoal);
}

.logo-year {
  font-family: 'Bodoni Moda', serif;
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.25em;
}

nav {
  display: flex;
  gap: 56px;
  justify-self: center;
}

nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.5s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.5s ease;
}

nav a:hover {
  color: var(--brass);
}

nav a:hover::after {
  width: 100%;
}

.cart {
  justify-self: end;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--hairline);
  padding: 12px 20px;
  transition: all 0.4s ease;
}

.cart:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 60px 72px 80px;
  gap: 80px;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  color: var(--walnut);
}

.hero-title em {
  font-style: italic;
  color: var(--brass);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 420px;
  font-weight: 300;
}

.cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--charcoal);
  transition: all 0.5s ease;
  position: relative;
}

.cta::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.4s ease;
}

.cta:hover {
  color: var(--brass);
  border-color: var(--brass);
  letter-spacing: 0.32em;
}

.cta:hover::after {
  transform: translateX(6px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(60, 42, 26, 0.15));
}

/* === Manifesto === */
.manifesto {
  padding: 140px 72px 160px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.brass-line {
  width: 36px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 48px;
}

.manifesto-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--walnut);
  margin-bottom: 36px;
}

.manifesto-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

/* === Collections === */
.collections {
  padding: 80px 72px 160px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.collections-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 88px;
}

.collections-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--walnut);
  margin-bottom: 24px;
}

.collections-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
}

.col-card {
  background: var(--cream);
  padding: 56px 40px 48px;
  text-align: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  justify-content: center;
}

.col-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(168, 138, 92, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.col-card:hover {
  background: var(--cream-deep);
}

.col-card:hover::before {
  opacity: 1;
}

.col-num {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.col-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  transition: color 0.5s ease;
}

.col-card:hover .col-name {
  color: var(--brass);
}

.col-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.col-count {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 400;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  width: 80px;
}

.col-card.editions {
  background: var(--walnut);
}

.col-card.editions .col-num,
.col-card.editions .col-count {
  color: var(--brass-light);
}

.col-card.editions .col-name {
  color: var(--cream);
}

.col-card.editions .col-sub {
  color: rgba(245, 239, 229, 0.55);
}

.col-card.editions:hover {
  background: #2A1D11;
}

.col-card.editions:hover .col-name {
  color: var(--brass-light);
}

/* === Rarity === */
.rarity {
  padding: 0 72px 160px;
  max-width: 1280px;
  margin: 0 auto;
}

.rarity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-top: 1px solid var(--brass);
}

.rarity-item {
  background: var(--cream);
  padding: 64px 32px;
  text-align: center;
}

.rarity-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--walnut);
  margin-bottom: 16px;
}

.rarity-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === Footer === */
footer {
  padding: 80px 72px 56px;
  text-align: center;
  border-top: 1px solid var(--hairline);
}

footer .brass-line {
  margin-bottom: 32px;
}

.footer-mark {
  font-family: 'Bodoni Moda', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
}

.footer-mark span {
  color: var(--brass);
  margin: 0 4px;
}

/* === Responsive === */
@media (max-width: 900px) {
  header {
    padding: 22px 24px;
    grid-template-columns: 1fr auto;
  }
  nav { display: none; }
  .cart {
    padding: 10px 16px;
    font-size: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 48px;
    min-height: auto;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .manifesto {
    padding: 80px 24px 100px;
  }

  .manifesto-title {
    font-size: 36px;
  }

  .collections {
    padding: 60px 24px 100px;
  }

  .collections-head {
    margin-bottom: 56px;
  }

  .collections-title {
    font-size: 32px;
  }

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

  .col-card {
    padding: 40px 24px;
    min-height: 220px;
  }

  .col-name {
    font-size: 28px;
  }

  .rarity {
    padding: 0 24px 100px;
  }

  .rarity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rarity-num {
    font-size: 44px;
  }

  .rarity-label {
    font-size: 9px;
  }
}
