:root {
  --bg: #0d0d0b;
  --surface: #161612;
  --fg: #f0ede8;
  --fg-muted: #8a857c;
  --accent: #c8944a;
  --accent-dim: #7a5828;
  --border: #2a2822;
}

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

html { scroll-behavior: smooth; }

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, #1e1a12 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--fg);
}
.lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 420px;
}

/* ── SHIRT VISUAL ── */
.shirt-concept {
  display: flex;
  gap: 0;
  transform: rotate(-2deg) translateY(-8px);
}
.shirt-face {
  width: 200px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  position: relative;
}
.shirt-face.front {
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
}
.shirt-face.back {
  background: var(--surface);
  border: 1px solid var(--border);
  transform: translateX(-8px) rotateY(8deg);
  box-shadow: -20px 0 40px rgba(0,0,0,0.5);
}
.quote-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 20px;
}
.tap-hint {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}
.distorted-art {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(200,148,74,0.04) 3px,
    rgba(200,148,74,0.04) 4px
  );
}
.art-inner { text-align: center; }
.lyric-scrawl {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.barcode-strip {
  width: 60px;
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    var(--fg-muted) 0px, var(--fg-muted) 1px,
    transparent 1px, transparent 3px
  );
  margin: 0 auto 16px;
  opacity: 0.4;
}
.nfc-glyph {
  font-size: 28px;
  color: var(--accent);
  opacity: 0.5;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}
.rule-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.label-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.how-it-works h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 72px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}
.step-body h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── COLLECTIONS ── */
.collections {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.collections-inner { max-width: 1200px; margin: 0 auto; }
.collections h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 72px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.collection-card {
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: var(--accent);
}
.collection-card.heartbreak::before { background: #7a5c4a; }
.collection-card.unreleased::before { background: var(--accent); }
.collection-card.purpose::before { background: #5c5a4a; }
.collection-card { background: var(--surface); }
.card-meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.collection-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--fg);
}
.collection-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── CLOSING ── */
.closing {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
}
.closing-detail p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--fg);
  display: block;
}
.brand-tagline {
  font-size: 11px;
  color: var(--fg-muted);
  display: block;
  margin-top: 4px;
}
.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .closing-inner { grid-template-columns: 1fr; }
  .hero { padding: 80px 24px 80px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .collection-grid { grid-template-columns: 1fr; }
  .how-it-works, .collections, .closing { padding: 80px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 40px; }
  .closing-quote p { font-size: 24px; }
}