/* ALCIDIA DA VEIGA — Spacing, radii, borders, layout, motion
   Minimal, editorial. The brand explicitly forbids shadows and
   decorative effects, so elevation is expressed with hairlines and
   negative space rather than drop shadows. */

:root {
  /* ---- Spacing scale ---- */
  --space-3xs: 2px;
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* ---- Radii — sharp, near-square ---- */
  --radius-none: 0;
  --radius-xs:   2px;   /* lookbook sections use 2px */
  --radius-sm:   4px;
  --radius-pill: 999px; /* only for the rare capsule / tag */

  /* ---- Border widths ---- */
  --bw-hairline: 0.5px; /* guideline rules */
  --bw-thin:     1px;
  --bw-medium:   1.5px;

  /* ---- Layout ---- */
  --page-max:     1440px;
  --page-gutter:  clamp(20px, 6vw, 112px); /* @kind other */
  --content-max:  1053px; /* guideline body column width */

  /* ---- Elevation (deliberately flat) ---- */
  --shadow-none: none;
  --shadow-overlay: 0 24px 60px -28px rgba(0, 0, 0, 0.35); /* modals/menus only */

  /* ---- Motion — quiet, slow, no bounce ---- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast:   180ms; /* @kind other */
  --dur-base:   280ms; /* @kind other */
  --dur-slow:   500ms; /* @kind other */
}
