:root {
  --cream: #FDF8F3;
  --charcoal: #1A1A1A;
  --charcoal-light: #2E2E2E;
  --coral: #FF5C3A;
  --coral-dark: #E04E2B;
  --teal: #2DD4BF;
  --teal-dark: #1BA894;
  --warm-gray: #6B6560;
  --light-gray: #E8E3DD;
  --white: #FFFFFF;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-tag {
  font-size: 12px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.pill {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  color: var(--charcoal);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--charcoal);
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--charcoal); color: white; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--warm-gray);
  font-weight: 500;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--light-gray);
}

/* Product Scatter */
.hero-visual {
  position: relative;
  height: 480px;
}
.product-scatter {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-main {
  width: 200px;
  top: 20px;
  left: 10px;
  transform: rotate(-3deg);
}
.card-sm {
  width: 140px;
}
.card-tilt-1 {
  top: 100px;
  right: 30px;
  transform: rotate(5deg);
}
.card-tilt-2 {
  bottom: 60px;
  left: 20px;
  transform: rotate(-5deg);
}
.card-md {
  width: 160px;
  top: 80px;
  left: 140px;
  transform: rotate(2deg);
}
.card-tilt-3 {
  bottom: 20px;
  right: 10px;
  transform: rotate(-4deg);
}
.product-img {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FF5C3A 0%, #FF8C6B 100%);
}
.img-2 { background: linear-gradient(135deg, #2DD4BF 0%, #7DDBC8 100%); }
.img-3 { background: linear-gradient(135deg, #9B7EF5 0%, #C4B0FF 100%); }
.img-4 { background: linear-gradient(135deg, #FFB800 0%, #FFD560 100%); }
.product-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--charcoal);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* Section Shared */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--charcoal);
  letter-spacing: -1px;
}
.section-desc {
  color: var(--warm-gray);
  font-size: 16px;
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Drops Section */
.drops-section {
  background: var(--charcoal);
  padding: 80px 40px;
}
.drops-section .section-title { color: var(--cream); }
.drops-section .section-desc { color: var(--warm-gray); }
.drops-section .section-tag { color: var(--teal); }
.drops-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.drop-card {
  background: var(--charcoal-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
}
.drop-card:hover { transform: translateY(-4px); }
.drop-featured {
  grid-row: span 2;
}
.drop-badge {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 16px;
}
.drop-visual {
  height: 180px;
  background: linear-gradient(135deg, #FF5C3A 0%, #FF8C6B 50%, #FFB800 100%);
}
.dv-2 { background: linear-gradient(135deg, #2DD4BF 0%, #7DDBC8 100%); }
.dv-3 { background: linear-gradient(135deg, #9B7EF5 0%, #C4B0FF 100%); }
.dv-4 { background: linear-gradient(135deg, #FF5C3A 0%, #2DD4BF 100%); }
.dv-5 { background: linear-gradient(135deg, #FFB800 0%, #9B7EF5 100%); }
.drop-info {
  padding: 20px;
}
.drop-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 8px;
}
.drop-info p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}
.drop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drop-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}
.drop-stock {
  font-size: 12px;
  color: var(--coral);
  font-weight: 500;
}

/* Categories */
.categories-section {
  padding: 80px 40px;
  background: var(--cream);
}
.categories-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.2s;
}
.category-card:hover { transform: scale(1.02); }
.cat-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}
.cv-1 { background: linear-gradient(135deg, #FF5C3A 0%, #FF8C6B 100%); }
.cv-2 { background: linear-gradient(135deg, #2DD4BF 0%, #7DDBC8 100%); }
.cv-3 { background: linear-gradient(135deg, #9B7EF5 0%, #C4B0FF 100%); }
.cv-4 { background: linear-gradient(135deg, #FFB800 0%, #FFD560 100%); }
.cv-5 { background: linear-gradient(135deg, var(--charcoal) 0%, var(--warm-gray) 100%); }
.cv-6 { background: linear-gradient(135deg, #2DD4BF 0%, #FF5C3A 100%); }
.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.cat-name {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: white;
}
.cat-count {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Custom Prints */
.custom-section {
  background: var(--charcoal);
  padding: 80px 40px;
}
.custom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.custom-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--cream);
  letter-spacing: -1px;
  margin: 12px 0 20px;
}
.custom-body {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 36px;
}
.custom-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--coral);
  min-width: 40px;
}
.step-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-top: 6px;
}
.custom-btn {
  background: var(--teal);
}
.custom-btn:hover { background: var(--teal-dark); }

/* Custom Visual */
.custom-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.visual-colors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.color-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s;
}
.color-swatch:hover { transform: scale(1.15); }
.cs-1 { background: #FF5C3A; }
.cs-2 { background: #2DD4BF; }
.cs-3 { background: #9B7EF5; }
.cs-4 { background: #FFB800; }
.cs-5 { background: #4CAF50; }
.cs-6 { background: #1A1A1A; border: 2px solid var(--warm-gray); }
.visual-materials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.material-tag {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.visual-sizes { margin-top: 8px; }
.size-visual {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
  height: 80px;
}
.size-box {
  background: var(--coral);
  border-radius: 4px;
}
.sb-sm { width: 24px; height: 30px; opacity: 0.6; }
.sb-md { width: 36px; height: 55px; opacity: 0.8; }
.sb-lg { width: 48px; height: 80px; }
.size-label {
  font-size: 13px;
  color: var(--warm-gray);
}

/* Manifesto */
.manifesto-section {
  padding: 80px 40px;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  margin-bottom: 60px;
}
.manifesto-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--charcoal);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.manifesto-quote cite {
  font-size: 14px;
  color: var(--coral);
  font-style: normal;
  font-weight: 500;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--light-gray);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--charcoal);
}
.stat-label {
  font-size: 13px;
  color: var(--warm-gray);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 13px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--coral); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--warm-gray);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: var(--warm-gray);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: 48px; }
  .nav-links { display: none; }
  .drops-grid {
    grid-template-columns: 1fr;
  }
  .drop-featured { grid-row: auto; }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-inner {
    grid-template-columns: 1fr;
  }
  .manifesto-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .hero-ctas {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 60px 20px 80px; }
  .drops-section, .categories-section, .custom-section, .manifesto-section {
    padding: 60px 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}