/* === BASE === */
:root {
  --bg: #FFF8F0;
  --surface: #FFFFFF;
  --accent: #FF6B4A;
  --accent-warm: #FF8C42;
  --green: #5BBF8A;
  --yellow: #FFD23F;
  --sage: #A8C5B5;
  --text: #2D2D2D;
  --text-muted: #6B6B6B;
  --border: #E8DDD4;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* === NAV === */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

/* === HERO === */
.hero {
  padding: 80px 48px 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.card-preview {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  max-width: 320px;
  width: 100%;
  transform: rotate(1.5deg);
  transition: transform 0.3s ease;
}

.card-preview:hover { transform: rotate(0deg); }

.card-art {
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-art svg { width: 100%; height: 100%; }

.card-info { text-align: center; }

.card-artist {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.card-price {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 32px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === ARTIST SPOTLIGHT === */
.artist-spotlight {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.spotlight-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
}

.spotlight-headline {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 640px;
  margin-bottom: 24px;
}

.spotlight-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.spotlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.attribution-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.attribution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.ac-art {
  border-radius: 10px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.ac-art svg { width: 100%; height: 100%; }

.ac-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ac-occasion {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 48px;
}

.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-header { margin-bottom: 64px; }

.hiw-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 12px;
}

.hiw-headline {
  font-size: clamp(30px, 3.5vw, 48px);
  max-width: 560px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.hiw-step h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.hiw-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === COLLECTIONS === */
.collections {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.collections-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.collections-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-warm);
  margin-bottom: 12px;
}

.collections-headline {
  font-size: clamp(30px, 3.5vw, 48px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.collection-card {
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 1px solid transparent;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cc-art {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
}

.cc-art svg { width: 80%; max-width: 100px; }

.cc-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.cc-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  background: var(--surface);
}

.closing-visual svg { width: 100%; display: block; }

.closing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.closing-body:last-child { margin-bottom: 0; }

/* === FOOTER === */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.5;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--bg);
  text-decoration: none;
  opacity: 0.7;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.4;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-visual { max-width: 500px; margin: 0 auto; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 48px 24px 0; }
  .hero-stats { padding: 24px 0; gap: 0; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 22px; }
  .spotlight-cards { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .artist-spotlight, .how-it-works, .collections, .closing { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .collection-grid { grid-template-columns: 1fr; }
  .card-preview { transform: none; }
}