:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --accent: #E8502A;
  --accent-light: #FDE8E2;
  --ink: #2C2825;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

::selection { background: var(--accent); color: #fff; }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid rgba(26, 23, 20, 0.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.nav-tagline {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  padding: 80px 48px 60px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-headline-line1 { display: block; font-style: italic; color: var(--fg-muted); }
.hero-headline-line2 { display: block; }
.hero-headline-line3 { display: block; color: var(--accent); font-style: italic; }
.hero-headline-line4 { display: block; }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.hero-meta-item:first-child { padding-left: 0; }
.hero-meta-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-meta-divider {
  width: 1px;
  height: 48px;
  background: rgba(26, 23, 20, 0.1);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}
.hero-bag {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bag-body {
  width: 200px;
  height: 260px;
  background: var(--accent);
  border-radius: 12px 12px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(232, 80, 42, 0.25);
}
.bag-handle {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  border: 4px solid var(--accent);
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  background: transparent;
}
.bag-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.bag-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bag-item-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.bag-item-bar {
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
  flex: 1;
}
.bag-item-1 .bag-item-circle { background: rgba(255,255,255,0.35); }
.bag-item-2 .bag-item-circle { background: rgba(255,255,255,0.2); }
.bag-item-3 .bag-item-circle { background: rgba(255,255,255,0.45); }
.bag-label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bag-shadow {
  width: 180px;
  height: 20px;
  background: rgba(232, 80, 42, 0.15);
  border-radius: 50%;
  margin-top: 12px;
  filter: blur(8px);
}
.hero-notif {
  background: white;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(26, 23, 20, 0.1);
  border: 1px solid rgba(26, 23, 20, 0.05);
}
.notif-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2D7A4F;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.notif-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg);
}
.notif-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* HERO DECORATION */
.hero-decoration {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  pointer-events: none;
  overflow: hidden;
}
.deco-circle {
  border-radius: 50%;
  position: absolute;
}
.deco-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  opacity: 0.6;
}
.deco-2 {
  width: 300px;
  height: 300px;
  border: 1px solid var(--accent);
  opacity: 0.08;
  bottom: 100px;
  right: 50px;
}
.deco-tick {
  position: absolute;
  bottom: 60px;
  right: 80px;
}

/* MOMENT */
.moment {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 48px;
  text-align: center;
}
.moment-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.moment-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 48px;
}
.moment-quote p { display: block; }
.moment-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 48px;
}
.moment-context {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.6);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* GAP */
.gap {
  padding: 100px 48px;
  background: var(--bg);
}
.gap-inner { max-width: 1200px; margin: 0 auto; }
.gap-header { margin-bottom: 60px; }
.gap-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  max-width: 700px;
  margin-top: 16px;
}
.gap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gap-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(26, 23, 20, 0.06);
  position: relative;
  transition: transform 0.2s ease;
}
.gap-card:hover { transform: translateY(-4px); }
.gap-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E8F5EC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gap-card-icon-rushd { background: var(--accent-light); }
.gap-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.gap-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}
.gap-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

/* HOW */
.how {
  padding: 100px 48px;
  background: var(--bg-alt);
}
.how-header {
  text-align: center;
  margin-bottom: 72px;
}
.how-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-top: 12px;
}
.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.how-step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.how-step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.7;
}
.how-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.connector-line {
  width: 60px;
  height: 1px;
  background: rgba(232, 80, 42, 0.3);
}
.connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* CATEGORIES */
.categories {
  padding: 100px 48px;
  background: var(--bg);
}
.categories-header { margin-bottom: 56px; }
.categories-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-top: 12px;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-card-wide { background: var(--accent); }
.cat-visual {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cat-visual-fashion { background: rgba(255,255,255,0.1); }
.cat-visual-beauty { background: rgba(255,255,255,0.15); }
.cat-visual-lifestyle { background: rgba(255,255,255,0.1); }
.cat-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.cat-card p {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
  font-weight: 300;
}
.cat-card-wide p { color: rgba(255,255,255,0.75); }

/* MANIFESTO */
.manifesto {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 48px;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 1.1rem;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 20px;
}
.manifesto-rule {
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin: 48px 0;
}
.manifesto-stats {
  display: flex;
  gap: 64px;
  margin-top: 16px;
}
.manifesto-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.manifesto-stat-label {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.45);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 56px;
}
.closing-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.closing-brand-name {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.closing-brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  padding: 48px;
  border-top: 1px solid rgba(26, 23, 20, 0.06);
}
.footer-inner { text-align: center; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-links {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer-sep { margin: 0 10px; opacity: 0.4; }

/* SECTION LABEL SHARED */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 3rem; }
  .gap-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { flex-direction: column; gap: 32px; }
  .how-connector { display: none; }
  .how-step { padding: 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card-wide { order: -1; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
}
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-meta-divider { display: none; }
  .gap-grid { grid-template-columns: 1fr; }
  .manifesto-stats { gap: 28px; }
}