:root {
  --bg: #FAF7F0;
  --fg: #1A1A1A;
  --accent: #D4623A;
  --gold: #C9A84C;
  --sage: #7B9E87;
  --leather: #8B7355;
  --ocean: #5B8FA8;
  --muted: #6B6560;
  --surface: #EDE6DA;
  --surface2: #E0D6C8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, blockquote {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--surface2);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 60px 100px;
  min-height: 85vh;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 68px);
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--muted);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.charm-illustration { text-align: center; }
.bag-silhouette svg { width: 100%; max-width: 280px; }
.charm-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: -20px;
}
.charm svg { width: 50px; height: 50px; }

/* SEGMENTS */
.segments {
  background: var(--surface);
  padding: 100px 60px;
}
.segments-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.segment h3 {
  font-size: 22px;
  margin: 16px 0 12px;
}
.segment p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.segment-icon svg { width: 60px; height: 60px; }
.segment-mid { border-left: 1px solid var(--surface2); border-right: 1px solid var(--surface2); padding: 0 48px; }

/* CHARM STORY */
.charm-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 60px;
  align-items: center;
}
.charm-story-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.charm-story h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.charm-story-body {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.charm-features { display: flex; flex-direction: column; gap: 14px; }
.charm-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}
.charm-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.charm-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; align-items: flex-start; gap: 20px; }
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--surface2);
  flex-shrink: 0;
  margin-top: 6px;
}
.timeline-dot-new { background: var(--accent); border-color: var(--accent); }
.timeline-dot-future { background: transparent; border: 2px dashed var(--muted); }
.timeline-connector { width: 2px; height: 32px; background: var(--surface2); margin: 4px 0 4px 7px; }
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  flex: 1;
}
.timeline-season { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 4px; }
.timeline-theme { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.timeline-charms { display: flex; gap: 6px; }
.mini-charm { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(26,26,26,0.15); }
.timeline-soon { font-size: 12px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* DROPS */
.drops {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
}
.drops-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.drops-headline {
  font-size: 36px;
  color: var(--bg);
  margin-bottom: 64px;
}
.drops-flow {
  display: flex;
  align-items: center;
  gap: 40px;
}
.drop-step { flex: 1; }
.drop-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.drop-step h3 {
  font-size: 20px;
  color: var(--bg);
  margin-bottom: 10px;
}
.drop-step p { font-size: 14px; color: rgba(250,247,240,0.6); line-height: 1.6; }
.drop-arrow svg { width: 40px; opacity: 0.5; }

/* PHILOSOPHY */
.philosophy {
  padding: 100px 60px;
  text-align: center;
}
.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  max-width: 800px;
  margin: 0 auto 64px;
  line-height: 1.5;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.pillar h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin: 16px 0 10px; }
.pillar p { font-size: 14px; color: var(--muted); }
.pillar-icon svg { width: 40px; height: 40px; }

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 60px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--bg);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(250,247,240,0.75);
  margin-bottom: 48px;
}
.closing-swatch {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(250,247,240,0.3);
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 48px 60px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(250,247,240,0.5);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(250,247,240,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; min-height: auto; }
  .hero-visual { order: -1; }
  .segments { padding: 60px 24px; }
  .segments-grid { grid-template-columns: 1fr; gap: 32px; }
  .segment-mid { border: none; border-top: 1px solid var(--surface2); border-bottom: 1px solid var(--surface2); padding: 32px 0; }
  .charm-story { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .drops { padding: 60px 24px; }
  .drops-flow { flex-direction: column; gap: 32px; }
  .drop-arrow { transform: rotate(90deg); }
  .philosophy { padding: 60px 24px; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
}