:root {
  --bg: #0c0b09;
  --bg-2: #141310;
  --bg-3: #1c1b18;
  --fg: #f0ebe2;
  --fg-2: #a09890;
  --fg-3: #6b6259;
  --accent: #c8a96e;
  --accent-dim: #8a7249;
  --card: #1e1d19;
  --card-border: #2a2824;
}

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


body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--card-border);
}
.nav-inner { display: flex; align-items: center; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 3rem 5rem;
  min-height: 85vh;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 40ch;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.photo-stack {
  position: relative;
  width: 320px;
  height: 380px;
}
.photo-card {
  position: absolute;
  border-radius: 4px;
  border: 1px solid var(--card-border);
}
.photo-card-1 {
  width: 220px; height: 280px;
  background: linear-gradient(135deg, #1a1a0e 0%, #2a2a1a 50%, #1a1a0e 100%);
  top: 0; left: 0;
  transform: rotate(-4deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.photo-card-2 {
  width: 220px; height: 280px;
  background: linear-gradient(135deg, #0e1a1a 0%, #1a2a2a 50%, #0e1a1a 100%);
  top: 40px; left: 60px;
  transform: rotate(3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.photo-card-3 {
  width: 220px; height: 280px;
  background: linear-gradient(135deg, #1a0e1a 0%, #2a1a2a 50%, #1a0e1a 100%);
  top: 80px; left: 100px;
  transform: rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* GALLERY */
.gallery {
  background: var(--bg-2);
  padding: 6rem 3rem;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.gallery-header { margin-bottom: 3rem; }
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.gallery-sub { color: var(--fg-2); font-size: 0.9rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-item {
  aspect-ratio: 4/5;
  border-radius: 3px;
  border: 1px solid var(--card-border);
}
.gi-1 { background: linear-gradient(135deg, #1f1a12 0%, #2e2a1a 100%); }
.gi-2 { background: linear-gradient(135deg, #121a14 0%, #1a2a1e 100%); }
.gi-3 { background: linear-gradient(135deg, #1a121f 0%, #2a1a2e 100%); }
.gi-4 { background: linear-gradient(135deg, #1a1512 0%, #2a221a 100%); }
.gi-5 { background: linear-gradient(135deg, #141218 0%, #201a28 100%); }
.gi-6 { background: linear-gradient(135deg, #181812 0%, #262620 100%); }
.gallery-cta {
  text-align: center;
  color: var(--fg-3);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* CREATORS */
.creators {
  padding: 6rem 3rem;
  background: var(--bg);
}
.creators-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.creators-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.creators-text > p {
  color: var(--fg-2);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.creators-list { list-style: none; }
.creators-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--fg-2);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.creators-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.creators-art {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.creator-badge {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.badge-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a20, #1a1a10);
  flex-shrink: 0;
}
.badge-info { flex: 1; }
.badge-name {
  height: 12px; width: 80px;
  background: var(--bg-3);
  border-radius: 2px;
  margin-bottom: 6px;
}
.badge-handle {
  height: 10px; width: 60px;
  background: var(--card-border);
  border-radius: 2px;
}
.badge-sub { text-align: right; }
.sub-pill {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
}
.sub-count {
  font-size: 0.75rem;
  color: var(--fg-3);
}

/* PRICING */
.pricing {
  padding: 6rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.pricing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 2.5rem;
}
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.price-point {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}
.pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
}
.pct-label {
  font-size: 0.8rem;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--card-border);
}
.pricing-features li:last-child { border-bottom: none; }


/* CLOSING */
.closing {
  padding: 8rem 3rem;
  text-align: center;
  background: var(--bg);
}
.closing-line {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1.5rem;
}
.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}

/* FOOTER */
.footer {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
  background: var(--bg-2);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-copy { font-size: 0.75rem; color: var(--fg-3); }


/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 4rem;
    gap: 3rem;
  }
  .hero-visual { display: none; }
  .gallery, .creators, .pricing, .closing { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .creators-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: 2.8rem; }
}