:root {
  --bg: #FDF8F0;
  --bg-alt: #F5EDD8;
  --primary: #1B3A6B;
  --accent: #C4512A;
  --frost: #E8F4F8;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --rule: #D4C9B0;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--rule);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.nav-season {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 5rem 3rem 4rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text {}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.meta-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* artwork placeholder */
.hero-artwork {}
.artwork-frame {
  background: var(--primary);
  aspect-ratio: 6 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.artwork-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B3A6B 0%, #2A5298 50%, #1B3A6B 100%);
}
.artwork-inner {
  position: relative;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
.artwork-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.artwork-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.4rem;
}
.artwork-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.hero-rule {
  max-width: 1200px;
  margin: 4rem auto 0;
  border-top: 1px solid var(--rule);
}

/* ── SHARED SECTION STYLES ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.7;
}

/* ── COLLECTION ── */
.collection {
  padding: 5rem 3rem;
  background: var(--bg-alt);
}
.collection-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.drop-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.drop-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.drop-badge-soon {
  background: var(--muted);
}
.drop-month {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.drop-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.drop-track {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}
.drop-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.drop-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.drop-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  background: var(--frost);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

/* ── TIERS ── */
.tiers {
  padding: 5rem 3rem;
}
.tiers-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  align-items: start;
}
.tier-card {
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2rem;
}
.tier-premium {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(27, 58, 107, 0.08);
}
.tier-ultra {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.tier-ultra .tier-name,
.tier-ultra .edition-num,
.tier-ultra .tier-price {
  color: white;
}
.tier-ultra .tier-includes li {
  color: rgba(255,255,255,0.75);
}
.tier-ultra .tier-includes li::before {
  color: rgba(255,255,255,0.4);
}
.tier-edition {
  margin-bottom: 1.25rem;
}
.edition-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.edition-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.25rem;
}
.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.tier-includes {
  list-style: none;
  padding: 0;
}
.tier-includes li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--rule);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.tier-includes li:last-child { border-bottom: none; }
.tier-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.55rem;
  color: var(--accent);
}
.tier-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  max-width: 55ch;
  margin: 0 auto;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--primary);
  color: white;
  padding: 5rem 3rem;
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
}
.philosophy-attribution {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 5rem 3rem;
  background: var(--bg-alt);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.manifesto-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.manifesto-stat {
  margin-bottom: 2.5rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 6rem 3rem;
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.closing-drop {
  display: inline-block;
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 1.5rem 2.5rem;
}
.closing-drop-badge {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.closing-drop-detail {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-artwork { order: -1; }
  .artwork-frame { max-height: 320px; }
  .drop-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .collection, .tiers, .manifesto { padding: 3rem 1.5rem; }
  .philosophy { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .site-nav { padding: 1rem 1.5rem; }
  footer { padding: 1.5rem; }
  .hero-meta { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .hero-meta { flex-direction: column; gap: 1rem; }
}