/* ==========================================================================
   base.css — reset + element defaults + brand type signatures (v2 prototype)
   All values via tokens.css. No raw hex/sizes here.
   ========================================================================== */

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

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

body {
  background: var(--pp-blush);
  color: var(--pp-text);
  font-family: var(--pp-sans);
  font-size: var(--pp-fs-body);
  line-height: var(--pp-lh-body);
  font-weight: var(--pp-w-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--pp-plum); line-height: var(--pp-lh-tight); }

p { margin: 0; }

a { color: inherit; text-decoration: none; transition: color var(--pp-dur-fast) var(--pp-ease); }

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

ul, ol { list-style: none; }

strong, b { font-weight: var(--pp-w-bold); }

:focus-visible {
  outline: 2px solid var(--pp-pink);
  outline-offset: 2px;
  border-radius: var(--pp-radius-sm);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: var(--pp-space-2);
  background: var(--pp-plum); color: var(--pp-on-accent);
  padding: var(--pp-space-2) var(--pp-space-4);
  border-radius: var(--pp-radius-pill); z-index: 10000;
}
.skip-link:focus { left: var(--pp-space-4); color: var(--pp-on-accent); }

/* --------------------------------------------------------------------------
   TYPE SIGNATURES
   -------------------------------------------------------------------------- */

/* Section-level display headline. */
.pp-headline {
  font-family: var(--pp-display);
  font-weight: var(--pp-w-heavy);
  font-size: var(--pp-fs-h2);
  line-height: var(--pp-lh-tight);
  letter-spacing: var(--pp-ls-h1);
  color: var(--pp-plum);
}
h1.pp-headline {
  font-size: var(--pp-fs-h1);
  line-height: var(--pp-lh-h1);
  text-transform: uppercase;
}
h3.pp-headline { font-size: var(--pp-fs-h3); font-weight: var(--pp-w-semibold); }

/* SIGNATURE 1 — the single pink accent word (prototype uses <em>, non-italic). */
.pp-accent,
.pp-headline em,
h1 em, h2 em { color: var(--pp-pink); font-style: normal; }

/* SIGNATURE 2 — lowercase italic display deck (the whisper). */
.pp-deckgroup { margin: 0 0 var(--pp-space-6); }
.pp-deckgroup__head { margin-bottom: var(--pp-space-3); }
.pp-deck {
  font-family: var(--pp-display);
  font-style: italic;
  font-weight: var(--pp-w-regular);
  font-size: var(--pp-fs-deck);
  line-height: var(--pp-lh-snug);
  text-transform: lowercase;
  color: var(--pp-plum);
  opacity: 0.85;
}

/* Eyebrow / label. */
.pp-eyebrow {
  font-family: var(--pp-sans);
  font-size: var(--pp-fs-eyebrow);
  font-weight: var(--pp-w-bold);
  letter-spacing: var(--pp-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pp-muted);
}

/* Price. */
.pp-price {
  font-family: var(--pp-sans);
  font-size: var(--pp-fs-price);
  font-weight: var(--pp-w-bold);
  font-variant-numeric: tabular-nums;
  color: var(--pp-pink);
}

/* --------------------------------------------------------------------------
   REDUCED MOTION — global backstop.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
