/* ═══════════════════════════════════════════════════════════════
   BASE — Reset, Typography, Layout Utilities
   Requires: tokens.css loaded first
   Google Fonts: include in HTML <head>
     <link rel="preconnect" href="https://fonts.googleapis.com" />
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
     <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-near-black);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ─── TYPOGRAPHY UTILITIES ───────────────────────────────────── */

/* Headings — Poppins Light */
.t-h1 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 60px;
  line-height: 1.1;
}

.t-h2 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
}

.t-h3 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.25;
}

.t-h4 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
}

.t-h5 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

/* Subheadings — Arial */
.t-sub1 {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.5;
}

.t-sub2 {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
}

/* Body — Arial */
.t-body-xl {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
}

.t-body-l {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
}

.t-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.t-body-s {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
}

.t-legal {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
}

/* Label / Eyebrow — Arial Bold, uppercase, tracked */
.t-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* ─── SKIP LINK ─────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--c-white);
  color: var(--c-near-black);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */

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

  html {
    scroll-behavior: auto;
  }

  .hero-video-bg {
    display: none;
  }
}

/* ─── RESPONSIVE TYPOGRAPHY ──────────────────────────────────── */

@media (max-width: 1100px) {
  .t-h1 { font-size: 48px; }
}

@media (max-width: 700px) {
  .t-h1  { font-size: 36px; line-height: 1.2; }
  .t-h2  { font-size: 28px; line-height: 1.2; }
  .t-h3  { font-size: 24px; line-height: 1.3; }
  .t-h4  { font-size: 20px; line-height: 1.35; }
  .t-h5  { font-size: 18px; line-height: 1.4; }
  .t-sub1 { font-size: 20px; }
  .t-sub2 { font-size: 18px; }
  .section { padding: var(--section-pad-mobile) 0; }
}
