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

:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --fg: #f5f5f0;
  --fg-2: #b0b0aa;
  --accent: #c8d8e8;
  --accent-2: #7a9ab8;
  --border: rgba(245,245,240,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1.5rem 2.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 400;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2.5rem 4rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-atmosphere {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,216,232,0.12) 0%, transparent 70%);
}
.shape-1 { width: 380px; height: 380px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.shape-2 { width: 220px; height: 220px; top: 20%; right: 10%; background: radial-gradient(circle, rgba(122,154,184,0.15) 0%, transparent 70%); }
.shape-3 { width: 140px; height: 140px; bottom: 15%; left: 15%; background: radial-gradient(circle, rgba(245,245,240,0.06) 0%, transparent 70%); }
.frost-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 40px,
    rgba(245,245,240,0.015) 40px,
    rgba(245,245,240,0.015) 41px
  ),
  repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200,216,232,0.03) 40px,
    rgba(200,216,232,0.03) 41px
  );
}
.hero-price-tag {
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1px solid var(--border);
  padding: 2rem 3rem;
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(8px);
}
.price-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}
.price-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-2);
  margin-top: 0.5rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-2);
  opacity: 0.5;
}

/* PHILOSOPHY */
.philosophy {
  padding: 8rem 2.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
}
.philosophy-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 2rem;
}
.philosophy-body p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.philosophy-body p:last-child { margin-bottom: 0; }

/* DROPS */
.drops { padding: 8rem 2.5rem; }
.drops-header { max-width: 1200px; margin: 0 auto 4rem; }
.drops-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 1rem;
}
.drops-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}
.drops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.drop-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.drop-visual {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark-gothic { background: linear-gradient(135deg, #0d0d0d 0%, #1a1015 100%); }
.dark-motivational { background: linear-gradient(135deg, #0d0d0d 0%, #101520 100%); }
.dark-streetwear { background: linear-gradient(135deg, #0d0d0d 0%, #151510 100%); }
.dark-faith { background: linear-gradient(135deg, #0d0d0d 0%, #12100d 100%); }
.drop-graphic {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(200,216,232,0.15);
  border-radius: 50%;
}
.drop-card:nth-child(1) .drop-graphic {
  border-color: rgba(150,130,180,0.3);
  width: 60px; height: 60px;
  box-shadow: 0 0 40px rgba(150,130,180,0.1);
}
.drop-card:nth-child(2) .drop-graphic {
  width: 90px; height: 90px;
  box-shadow: 0 0 40px rgba(200,216,232,0.1);
}
.drop-card:nth-child(3) .drop-graphic {
  width: 70px; height: 70px;
  border-radius: 0;
  transform: rotate(45deg);
}
.drop-card:nth-child(4) .drop-graphic {
  width: 60px; height: 60px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-color: rgba(200,180,140,0.25);
}
.drop-info { padding: 1.5rem 1.75rem; }
.drop-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.drop-info p {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 8rem 2.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 3rem;
}
.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-2);
  margin: 0 auto 3rem;
  opacity: 0.5;
}
.manifesto-details {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.manifesto-stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-2);
}

/* CLOSING */
.closing {
  padding: 10rem 2.5rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-2);
  margin-bottom: 3rem;
}
.closing-visual {
  display: flex;
  justify-content: center;
}
.closing-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,216,232,0.2) 0%, transparent 70%);
  border: 1px solid rgba(200,216,232,0.12);
}

/* FOOTER */
.footer {
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-note {
  font-size: 0.85rem;
  color: var(--fg-2);
  margin-bottom: 1rem;
}
.footer-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--fg-2);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-atmosphere { height: 300px; }
  .hero-headline { font-size: 3rem; }
  .drops-grid { grid-template-columns: 1fr; }
  .manifesto-details { gap: 2.5rem; flex-wrap: wrap; }
  .nav { padding: 1.25rem 1.5rem; }
  .philosophy { padding: 5rem 1.5rem; }
  .drops { padding: 5rem 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .closing { padding: 6rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-headline { font-size: 2.5rem; }
  .price-value { font-size: 2.5rem; }
}