/* ============================================================
   THE OTHER SIDE — Design Tokens
   colors_and_type.css

   A monochrome, editorial system for a fashion model agency.
   Black ink on white paper, hairline rules, confident type,
   generous whitespace. "Modern but minimal."

   Type substitution note: the live site uses a licensed
   neo-grotesque (Helvetica / Neue Haas family). Archivo is the
   closest free Google Fonts substitute and is used here.
   Swap @font-face to the licensed family for production.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300..800;1,300..600&family=Archivo+Expanded:wght@500;600;700&display=swap');

:root {
  /* ---- Brand palette : monochrome ---- */
  --paper:        #FFFFFF;
  --paper-warm:   #FBFBF9;
  --ink:          #0B0B0B;
  --ink-2:        #6A6A6A;
  --ink-3:        #9C9C9C;
  --ink-4:        #C7C7C4;

  /* ---- Structure ---- */
  --line:         #E6E6E3;
  --line-strong:  #0B0B0B;
  --surface:      #F1F1EF;
  --surface-2:    #E9E9E6;

  /* ---- Optional accent ---- */
  --accent:       #1A1A1A;
  --accent-live:  #E8482B;

  /* ---- Type families ---- */
  --font-sans: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-wide: 'Archivo Expanded', 'Archivo', Helvetica, sans-serif;

  /* ---- Fluid type scale ---- */
  --t-display-xl: clamp(3rem, 9vw, 8.75rem);
  --t-display-l:  clamp(2.25rem, 5vw, 4.5rem);
  --t-h1:         clamp(1.75rem, 3vw, 2.5rem);
  --t-h2:         1.5rem;
  --t-h3:         1.125rem;
  --t-body:       1rem;
  --t-small:      0.8125rem;
  --t-label:      0.6875rem;

  /* ---- Weights ---- */
  --w-light:   300;
  --w-regular: 400;
  --w-medium:  500;
  --w-semi:    600;
  --w-bold:    700;

  /* ---- Tracking ---- */
  --track-tight:   -0.03em;
  --track-snug:    -0.01em;
  --track-normal:   0;
  --track-label:    0.14em;
  --track-wide:     0.22em;

  /* ---- Line heights ---- */
  --lh-tight:  0.98;
  --lh-snug:   1.12;
  --lh-body:   1.55;

  /* ---- Spacing scale (4-based) ---- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 192px;

  /* ---- Radii : crisp, editorial ---- */
  --r-0: 0;
  --r-sm: 2px;
  --r-pill: 999px;

  /* ---- Borders ---- */
  --bw: 1px;
  --bw-strong: 1.5px;

  /* ---- Elevation ---- */
  --shadow-none: none;
  --shadow-overlay: 0 18px 60px -24px rgba(0,0,0,0.28);

  /* ---- Motion : quiet, precise ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 160ms;
  --dur: 300ms;
  --dur-slow: 600ms;

  /* ---- Layout ---- */
  --maxw: 1600px;
  --gutter: clamp(16px, 4vw, 64px);
}

.ts-display-xl {
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: var(--t-display-xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
  color: var(--ink);
}

.ts-display {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--t-display-l);
  line-height: var(--lh-snug);
  letter-spacing: var(--track-tight);
  color: var(--ink);
}

.ts-h1 {
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: var(--t-h1);
  line-height: var(--lh-snug);
  letter-spacing: var(--track-snug);
  color: var(--ink);
}

.ts-h2 {
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: var(--t-h2);
  line-height: 1.2;
  letter-spacing: var(--track-snug);
  color: var(--ink);
}

.ts-h3 {
  font-family: var(--font-sans);
  font-weight: var(--w-semi);
  font-size: var(--t-h3);
  line-height: 1.3;
  letter-spacing: var(--track-snug);
  color: var(--ink);
}

.ts-body {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--track-normal);
  color: var(--ink);
}

.ts-small {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--t-small);
  line-height: 1.45;
  color: var(--ink-2);
}

.ts-label {
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: var(--t-label);
  line-height: 1;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink);
}

.ts-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--w-semi);
  font-size: var(--t-label);
  line-height: 1;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-3);
}

input::placeholder {
  color: var(--ink-4);
  opacity: 1;
}

.ts-stat {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--t-small);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
