/* Type scale — Archivo throughout (weights 300/400/500/600), values taken 1:1 from
   the Figma homepage. Display sizes scale with the viewport via --u (tokens.css) and cap
   at their mock size; UI text (labels, captions, buttons) stays fixed. */

body {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: inherit;
}

h1, h2, h3, h4, h5, h6 { font-weight: 300; letter-spacing: .01em; }

/* ---- Display — Archivo Light with the gradient fill ------------------------------ */

/* Kept whole even where a step is currently unclaimed: this is the scale, not a list of
   classes in use. Nothing on the page asks for .display-2, .display-4, .display-5, .h6 or
   .h6-light today (nor for the .stack-* gaps in sections.css); the steps between them are
   what make the sizes that ARE used read as one system. */

.display {
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: transparent;
  background-image: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.display-1 { font-size: var(--wordmark-fs); letter-spacing: -0.035em; } /* footer wordmark */
.display-2 { font-size: clamp(64px, calc(160 * var(--u)), 160px); }                          /* team marquee (200 -> 160: the section is one centred screen now) */
.display-3 { font-size: clamp(56px, calc(160 * var(--u)), 160px); }                          /* Signature works */
.display-4 { font-size: clamp(52px, calc(132 * var(--u)), 132px); }                          /* What we do     */
.display-5 { font-size: clamp(48px, calc(120 * var(--u)), 120px); line-height: 1; }          /* Built on trust */
.display-6 { font-size: clamp(48px, min(calc(120 * var(--u)), calc(120 * var(--uh))), 120px); line-height: 1.08; letter-spacing: -0.03em; } /* hero — scales by the smaller of width/height */
.display-8 { font-size: clamp(40px, calc(96 * var(--u)), 96px); }                            /* Let's talk     */

/* ---- Headings ------------------------------------------------------------------- */

.h3 { font-size: clamp(28px, calc(48 * var(--u)), 48px); font-weight: 300; line-height: 1.5; letter-spacing: -0.5px; } /* featured quote */
.h4 { font-size: clamp(28px, calc(40 * var(--u)), 40px); font-weight: 300; line-height: 1.4; letter-spacing: -0.5px; color: var(--ink-2); } /* stats */
.h5 { font-size: clamp(24px, calc(36 * var(--u)), 36px); font-weight: 300; line-height: 1.4; letter-spacing: -0.5px; } /* project title */
.h6 { font-size: clamp(22px, calc(32 * var(--u)), 32px); font-weight: 300; line-height: 1.4; letter-spacing: .01em; } /* service title */
.h6-light { font-size: clamp(22px, calc(32 * var(--u)), 32px); font-weight: 300; line-height: 1.2; letter-spacing: 0; } /* tabs */

/* ---- Body ----------------------------------------------------------------------- */

/* Keep body copy at Light alongside the Archivo headings. */
.body-lg { font-size: 18px; font-weight: 300; line-height: 1.6; letter-spacing: 0.02em; color: var(--text); }
.body    { font-size: 17px; font-weight: 300; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink); }
.body-sm { font-size: 16px; font-weight: 300; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink); }

/* ---- Small / UI ----------------------------------------------------------------- */

/* The decorative slash is part of the eyebrow style, not the copy. */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.eyebrow::before {
  content: "/";
  margin-right: 1.3em; /* the air to the label (was two nbsp) */
  font-size: 0.82em;
  vertical-align: 0.05em;
}

/* Person names, button labels */
.label {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.caption    { font-size: 14px; font-weight: 300; line-height: 1;   letter-spacing: 0.02em; color: var(--muted); }
.caption-xl { font-size: 14px; font-weight: 300; line-height: 1;   letter-spacing: 0.02em; }
.small      { font-size: 13px; font-weight: 300; line-height: 1;   letter-spacing: 0.02em; color: var(--muted); }
.nav        { font-size: 14px; font-weight: 500; line-height: 1;   letter-spacing: 0.02em; color: var(--ink); }
