/* AMERICAN — Spacing, radius, shadow, layout tokens */
:root {
  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Section rhythm */
  --section-pad-y: 80px;
  --container-max: 1200px;
  --container-pad: 24px;

  /* Radius — AMERICAN is a squared-off, industrial brand.
     Buttons and cards are essentially rectangular; only pills/icons are round. */
  --radius-none: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Borders */
  --border-width: 1px;          /* @kind other */
  --border-width-strong: 2px;   /* @kind other */

  /* Shadows — restrained; cards sit on flat fills, subtle lift only */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.14);
  --shadow-image: 0 6px 24px rgba(0,0,0,0.18);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);   /* @kind other */
  --dur-fast: 120ms;   /* @kind other */
  --dur: 200ms;        /* @kind other */
  --dur-slow: 320ms;   /* @kind other */

  /* Overlays / protection gradients on hero imagery */
  --scrim-dark: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 100%);   /* @kind other */
  --scrim-bottom: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);   /* @kind other */
}
