/* Asthetica Salon Partners — design tokens
   Bubble Deck: full palette, light, gradient fields carry meaning. */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Poppins:wght@400;500;600&display=swap");

:root {
  /* ink + ground */
  --ink: #0f1222;
  --ink-2: #3b3f57;
  --ink-3: #6b7090;
  --paper: #ffffff;
  --mist: #f6f7fb;
  --mist-2: #edeff7;
  --line: #e2e5f0;

  /* money — hot pink */
  --pink-1: #ff2e86;
  --pink-2: #ff6fb5;
  --pink-ink: #8c0b45;
  --pink-wash: #ffe9f3;

  /* points — green */
  --green-1: #12c48b;
  --green-2: #57dfa0;
  --green-ink: #06603f;
  --green-wash: #e2f8ef;

  /* system + the draw — blue */
  --blue-1: #2f6bff;
  --blue-2: #58c7ff;
  --blue-ink: #10307f;
  --blue-wash: #e7efff;

  /* prize */
  --amber: #ffc53d;
  --amber-ink: #6b4400;
  --amber-wash: #fff4d6;

  /* the one alarm colour */
  --alarm: #e5484d;
  --alarm-wash: #fdeaea;

  /* Text-bearing fields: every stop stays dark enough for white body copy (>=4.5:1).
     The brighter tints above stay for washes, borders and decorative bubbles. */
  --field-pink: linear-gradient(152deg, #b8005a 0%, #d81070 52%, #e0176e 100%);
  --field-green: linear-gradient(152deg, #05684c 0%, #0a7f5c 100%);
  --field-blue: linear-gradient(152deg, #173fb0 0%, #2f6bff 100%);

  /* type */
  --display: "Bricolage Grotesque", "Avenir Next", system-ui, sans-serif;
  --ui: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-figure: clamp(3.4rem, 17vw, 4.9rem);
  --fs-h1: clamp(1.75rem, 7vw, 2.2rem);
  --fs-h2: 1.3rem;
  --fs-h3: 1.0625rem;
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.78125rem;

  /* shape + depth: every shadow has offset and blur */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-bubble: 34px;
  --r-pill: 999px;

  --lift-1: 0 2px 6px rgba(15, 18, 34, 0.06), 0 8px 20px rgba(15, 18, 34, 0.06);
  --lift-2: 0 4px 10px rgba(15, 18, 34, 0.07), 0 18px 38px rgba(15, 18, 34, 0.1);
  --lift-pink: 0 6px 14px rgba(255, 46, 134, 0.22), 0 20px 44px rgba(255, 46, 134, 0.22);
  --lift-green: 0 6px 14px rgba(18, 196, 139, 0.2), 0 20px 44px rgba(18, 196, 139, 0.2);
  --lift-blue: 0 6px 14px rgba(47, 107, 255, 0.2), 0 20px 44px rgba(47, 107, 255, 0.2);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tap: 48px;
}

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

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

body {
  margin: 0;
  font-family: var(--ui);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
}

/* browser surfaces wear the palette too */
::selection { background: var(--pink-1); color: #fff; }
:root { accent-color: var(--pink-1); caret-color: var(--pink-1); color-scheme: light; }
:focus-visible {
  outline: 3px solid var(--blue-1);
  outline-offset: 2px;
  border-radius: 6px;
}
* { scrollbar-color: var(--ink-3) var(--mist-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--mist-2); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 99px; border: 3px solid var(--mist-2); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.num { font-variant-numeric: tabular-nums; }
.vh {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
