/* Crow Logistics LLC — shared brand tokens */

:root {
  /* core palette */
  --ink: #0E0E0F;
  --ink-2: #1A1A1B;
  --ink-3: #2A2A2C;
  --bone: #F4F4F5;        /* cool light gray */
  --bone-2: #E7E7EA;
  --paper: #FFFFFF;        /* pure white */
  --rust: #B5291F;         /* primary accent — Crow logo red */
  --rust-deep: #8B1E17;    /* darker red for hover */
  --rust-soft: #F87171;    /* red-400 soft */
  --signal: #B5291F;       /* alias to rust */
  --road: #6B6B70;         /* cool gray */
  --road-2: #9A9AA0;
  --hairline: rgba(14,14,15,0.10);
  --hairline-dark: rgba(255,255,255,0.12);

  /* status hues for CRM */
  --status-new: #0E0E0F;       /* black */
  --status-talk: #3F3F46;      /* zinc-700 */
  --status-qual: #52525B;      /* zinc-600 */
  --status-app: #71717A;       /* zinc-500 */
  --status-mvr: #A1A1AA;       /* zinc-400 */
  --status-offer: #B5291F;     /* Crow red — action */
  --status-hire: #0E0E0F;      /* black — success */

  /* type */
  --display: "Big Shoulders Display", "Anton", "Oswald", sans-serif;
  --display-stencil: "Big Shoulders Stencil Display", var(--display);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "DM Sans", "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* rhythm */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* utility classes used across pages */
.mono { font-family: var(--mono); font-feature-settings: "tnum" 1, "ss01" 1; }
.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; }
.stencil { font-family: var(--display-stencil); font-weight: 800; letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--road);
}

/* a thin "DOT placard" used in headers/footers */
.dot-placard {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--ink);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dot-placard.light { background: var(--bone); color: var(--ink); border: 1px solid var(--hairline); }

/* hatched stripes — used as a heritage motif */
.hatch {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--rust) 0 8px,
    var(--ink) 8px 16px
  );
}
.hatch-thin {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 2px,
    transparent 2px 8px
  );
}

/* a chunky button shared across pages */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  border-radius: 2px;
  text-decoration: none;
  transition: transform 80ms ease, background 120ms ease, color 120ms ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn.primary { background: var(--rust); border-color: var(--rust); color: var(--bone); }
.btn.primary:hover { box-shadow: 4px 4px 0 var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bone); }
.btn.sm { padding: 9px 14px; font-size: 12px; }
