/* ============================================================
   LifeShaping METHOD™ — Design System
   Locked design tokens. CSS custom properties only.
   Palette: #40045D | #000000 | #FFFFFF | #C9A227 | #0B0B0D | #161418
   Typography: Playfair Display 700 (display) / DM Sans 400/600/700 (body)
   ============================================================ */

/* --- Custom properties --- */
:root {
  --color-purple:      #40045D;
  --color-black:       #000000;
  --color-white:       #FFFFFF;
  --color-gold:        #C9A227;
  --color-near-black:  #14021F;
  --color-charcoal:    #161418;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold:    700;

  --max-width: 1200px;
  --gutter:    40px;
  --gutter-mobile: 24px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  background-color: var(--color-near-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Push body content below fixed nav */
  padding-top: 72px;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --- Reveal animation base (JS-driven) --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
