/* ============================================================
   VICTOR CIUPITU — Design Tokens
   Videographer studio · Bucharest, RO
   Apple-inspired dark cinematic minimalism
   ============================================================ */

/* Fonts — load once per document (CDN). If self-hosting, swap to
   local @font-face and place files in /fonts. */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;1,9..40,300&display=swap');

:root {
  /* ---- Color · Accent ---- */
  --accent: #FF9100;            /* primary accent — used sparingly */
  --accent-dim: #CC7400;        /* hover / pressed accent */
  --accent-glow: rgba(255,145,0,0.15); /* radial glow, faint washes */

  /* ---- Color · Surfaces ---- */
  --bg: #1A1A1A;                /* page background */
  --bg-card: #222222;           /* primary card surface */
  --bg-card-alt: #252525;       /* alternate / nested card surface */

  /* ---- Color · Text ---- */
  --text: #F0EDE6;             /* warm off-white, primary */
  --text-muted: #8A857C;       /* warm grey, secondary */

  /* ---- Color · Lines ---- */
  --border: rgba(255,255,255,0.06); /* hairline borders, 0.5px */

  /* ---- Type families ---- */
  --font-display: 'Unbounded', system-ui, sans-serif; /* headings */
  --font-body: 'DM Sans', system-ui, sans-serif;       /* body / UI */

  /* ---- Type weights ---- */
  --w-light: 300;
  --w-bold: 700;
  --w-black: 900;

  /* ---- Radii · squircle system ---- */
  --radius-card: 20px;
  --radius-btn: 14px;
  --radius-icon: 12px;
  --radius-pill: 999px;
  --radius-portfolio: 16px;
  --radius-avatar: 16px;

  /* ---- Spacing · 8px grid ---- */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;   /* card internal padding */
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px; /* section rhythm */

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.3s;
  --dur-slow: 0.4s;

  /* ---- Effects ---- */
  --blur-nav: 20px;
  --nav-bg: rgba(26,26,26,0.75);
  --border-hover: rgba(255,145,0,0.25);
}

/* ============================================================
   SEMANTIC TYPE — apply directly to elements
   Sizes use clamp() for mobile-first fluid scaling.
   ============================================================ */

.t-display {            /* hero headline */
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--text);
}

.t-h1 {                 /* section headline */
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
}

.t-h2 {                 /* card / sub headline */
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.t-quote {              /* testimonial */
  font-family: var(--font-display);
  font-weight: var(--w-light);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.t-lead {               /* hero sub / section lead */
  font-family: var(--font-body);
  font-weight: var(--w-light);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--text-muted);
}

.t-body {               /* default body copy */
  font-family: var(--font-body);
  font-weight: var(--w-light);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.t-stat {               /* large stat numbers */
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--accent);
}

.t-label {              /* nav links, small labels, eyebrow */
  font-family: var(--font-body);
  font-weight: var(--w-400, 400);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

.t-eyebrow {            /* section eyebrow / kicker */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
