/* ==========================================================================
   EAS — Manufacturing Direct Hire Recruiting
   Design system & site styles
   --------------------------------------------------------------------------
   Aesthetic: industrial, premium, confident. Deep steel navy + safety amber.
   ========================================================================== */

/* ---- Design tokens ----------------------------------------------------- */
:root {
  /* Brand palette */
  --navy-900: #06121f;
  --navy-800: #0a1c2e;
  --navy-700: #0e273f;
  --navy-600: #143350;
  --steel-500: #2a4a68;
  --steel-300: #6b8aa6;
  --slate-200: #c8d4de;
  --slate-100: #e7edf2;
  --paper: #f5f7f9;
  --white: #ffffff;

  /* Safety amber accent */
  --amber-500: #f5821f;
  --amber-400: #ff9836;
  --amber-600: #d96c0a;
  --amber-soft: rgba(245, 130, 31, 0.12);

  /* Text */
  --ink: #0c1722;
  --ink-soft: #3d4f5d;
  --ink-muted: #6a7c89;
  --on-dark: #eaf1f7;
  --on-dark-soft: #9fb3c4;

  /* Lines & surfaces */
  --line: #dde5eb;
  --line-dark: rgba(255, 255, 255, 0.10);

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-head: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(6, 18, 31, 0.06), 0 4px 14px rgba(6, 18, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(6, 18, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 18, 31, 0.18);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---- Typography -------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--amber-500);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--amber-400); }

/* ---- Layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--navy { background: var(--navy-800); color: var(--on-dark); }
.section--navy p { color: var(--on-dark-soft); }
.section--paper { background: var(--paper); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure.center { margin-inline: auto; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }
.section--navy .lead { color: var(--on-dark-soft); }

.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.6rem; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber-500); color: #1c1003; box-shadow: 0 8px 22px rgba(245, 130, 31, 0.35); }
.btn--primary:hover { background: var(--amber-400); box-shadow: 0 12px 30px rgba(245, 130, 31, 0.45); }
.btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn--dark { background: var(--navy-800); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); }
.btn--outline { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy-800); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 18, 31, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--white); font-family: var(--font-head); font-weight: 800; }
.brand__logo { height: 48px; width: auto; display: block; }
.brand__logo--footer { height: 60px; margin-bottom: 0.4rem; }
@media (max-width: 980px) { .brand__logo { height: 40px; } }
@media (max-width: 380px) { .brand__logo { height: 34px; } }
.brand__mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  display: grid; place-items: center; color: #1c1003;
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 1.18rem; letter-spacing: 0.01em; }
.brand__sub { font-family: var(--font-display); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; }
.nav__links a {
  color: var(--on-dark-soft); font-family: var(--font-head); font-weight: 600; font-size: 0.96rem;
  padding: 0.5rem 0.8rem; border-radius: 8px; transition: color 0.15s, background 0.15s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__cta { margin-left: 0.6rem; }
.nav__toggle { display: none; margin-left: auto; background: transparent; border: 0; width: 44px; height: 44px; color: var(--white); }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: var(--navy-900); padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.6rem;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%); transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-lg); max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav__links[data-open="true"] { transform: translateY(0); }
  .nav__links a { padding: 0.8rem 0.9rem; font-size: 1.05rem; }
  .nav__cta { margin: 0.5rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: grid; place-items: center; }
}

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; color: var(--on-dark); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(6,18,31,0.96) 30%, rgba(6,18,31,0.74) 62%, rgba(10,28,46,0.55) 100%),
    radial-gradient(120% 80% at 90% 10%, rgba(245,130,31,0.18), transparent 55%);
}
.hero__inner { padding-block: clamp(3.5rem, 9vw, 7rem); max-width: 760px; }
.hero h1 { color: var(--white); }
.hero h1 .hl { color: var(--amber-400); }
.hero__sub { font-size: clamp(1.08rem, 1.9vw, 1.35rem); color: var(--slate-100); margin-top: 1.4rem; max-width: 60ch; }
.hero__kicker { font-family: var(--font-head); font-weight: 700; color: var(--amber-400); letter-spacing: 0.01em; margin-top: 1.3rem; font-size: 1.05rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__page { padding-block: clamp(3rem, 7vw, 5rem); max-width: 820px; }
.hero__page .crumbs { margin-bottom: 1rem; }

/* Trust strip */
.trust-strip { background: var(--navy-900); border-top: 1px solid var(--line-dark); }
.trust-strip ul { display: flex; flex-wrap: wrap; gap: 0.4rem 2.2rem; justify-content: center; padding-block: 1.1rem; }
.trust-strip li {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--on-dark-soft);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.trust-strip li svg { width: 17px; height: 17px; color: var(--amber-400); }

/* ---- Cards ------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--slate-200); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--amber-soft); color: var(--amber-600); margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.98rem; }

.card--dark { background: var(--navy-700); border-color: var(--line-dark); color: var(--on-dark); }
.card--dark p { color: var(--on-dark-soft); }
.card--dark .card__icon { background: rgba(245,130,31,0.16); color: var(--amber-400); }

/* Credibility "we've been there" cards */
.cred-card {
  position: relative; padding: 1.5rem 1.4rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line-dark); overflow: hidden;
}
.cred-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber-500); }
.cred-card .tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--amber-400); font-weight: 600; }
.cred-card h3 { color: var(--white); margin: 0.4rem 0 0.5rem; font-size: 1.22rem; }
.cred-card p { color: var(--on-dark-soft); font-size: 0.96rem; }

/* ---- Positions grid (icon chips) -------------------------------------- */
.positions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 920px) { .positions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .positions { grid-template-columns: repeat(2, 1fr); } }
.position {
  display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start;
  padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); transition: transform 0.18s var(--ease), border-color 0.18s, box-shadow 0.18s;
}
.position:hover { transform: translateY(-3px); border-color: var(--amber-500); box-shadow: var(--shadow-sm); }
.position__icon { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; background: var(--navy-800); color: var(--amber-400); }
.position__icon svg { width: 22px; height: 22px; }
.position span { font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.2; color: var(--ink); }

/* ---- Stats band -------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.4rem 0.8rem; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: 0; }
@media (max-width: 760px) { .stat { border-right: 0; } }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: var(--amber-400); letter-spacing: 0.01em; }
.stat__label { font-family: var(--font-head); font-weight: 600; color: var(--white); margin-top: 0.55rem; font-size: 1rem; }
.stat__sub { color: var(--on-dark-soft); font-size: 0.85rem; margin-top: 0.2rem; }

/* ---- Process ----------------------------------------------------------- */
.process { counter-reset: step; display: grid; gap: 0.9rem; }
.process--cols { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .process--cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process--cols { grid-template-columns: 1fr; } }
.step {
  counter-increment: step; position: relative;
  padding: 1.4rem 1.3rem 1.3rem; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  color: var(--amber-500); display: block; margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.94rem; }

/* ---- Testimonials ------------------------------------------------------ */
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.1rem; height: 100%;
}
.quote__mark { font-family: Georgia, serif; font-size: 3rem; line-height: 0.5; color: var(--amber-500); height: 1.4rem; }
.quote p { color: var(--ink); font-size: 1.05rem; font-style: italic; }
.quote__by { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-700); color: var(--amber-400); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.quote__name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.quote__role { color: var(--ink-muted); font-size: 0.86rem; }

/* ---- Industry / image cards ------------------------------------------- */
.tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px; display: flex; box-shadow: var(--shadow-sm); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,18,31,0.15) 30%, rgba(6,18,31,0.9) 100%); }
.tile:hover img { transform: scale(1.06); }
.tile__body { position: relative; z-index: 1; margin-top: auto; padding: 1.4rem; color: var(--white); }
.tile__body h3 { color: var(--white); font-size: 1.3rem; }
.tile__body p { color: var(--slate-100); font-size: 0.92rem; margin-top: 0.3rem; }
.tile__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.7rem; font-family: var(--font-head); font-weight: 700; color: var(--amber-400); font-size: 0.92rem; }
.tile__link svg { width: 16px; height: 16px; transition: transform 0.18s var(--ease); }
.tile:hover .tile__link svg { transform: translateX(4px); }

/* ---- Photo gallery ----------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 0.7rem; }
.gallery figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery .wide { grid-column: span 2; } .gallery .tall { grid-row: span 1; } }

/* ---- Split feature ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ---- Checklist --------------------------------------------------------- */
.checklist { display: grid; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist li svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--amber-500); margin-top: 2px; }
.checklist li b { color: inherit; }
.section--navy .checklist li { color: var(--on-dark); }
.section--navy .checklist li svg { color: var(--amber-400); }

/* ---- Pills / chips ----------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); color: var(--ink-soft);
}
.section--navy .chip { border-color: var(--line-dark); background: rgba(255,255,255,0.04); color: var(--on-dark-soft); }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(6,18,31,0.96), rgba(10,28,46,0.82)); }
.cta-band .container { text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-roles { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin: 1.4rem 0 1.8rem; }
.cta-roles span {
  font-family: var(--font-head); font-weight: 700; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.98rem;
}
.cta-band .hero__actions { justify-content: center; }

/* ---- Article cards ----------------------------------------------------- */
.article-card { display: flex; flex-direction: column; height: 100%; }
.article-card .card__meta { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber-600); margin-bottom: 0.6rem; }
.article-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.article-card .read { margin-top: auto; padding-top: 1rem; font-family: var(--font-head); font-weight: 700; color: var(--navy-700); display: inline-flex; align-items: center; gap: 0.4rem; }
.article-card .read svg { width: 16px; height: 16px; }

/* ---- Forms ------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.8rem 0.95rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber-500); box-shadow: 0 0 0 3px var(--amber-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: 0.85rem; color: var(--ink-muted); }
.form-success { display: none; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: var(--amber-soft); border: 1px solid var(--amber-500); color: var(--ink); font-family: var(--font-head); font-weight: 600; }
.form-success.show { display: block; }
.form-error { display: none; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: #fdecec; border: 1px solid #e3a0a0; color: #7a1f1f; font-family: var(--font-head); font-weight: 600; margin-bottom: 1rem; }
.form-error.show { display: block; }
.form-error a { text-decoration: underline; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ---- Contact info panel ------------------------------------------------ */
.info-list { display: grid; gap: 1.3rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .info-ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(245,130,31,0.16); color: var(--amber-400); flex: 0 0 auto; }
.info-list .info-ic svg { width: 22px; height: 22px; }
.info-list .lbl { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.info-list .val { color: var(--on-dark-soft); font-size: 0.96rem; }
.info-list .val a:hover { color: var(--amber-400); }

/* ---- Breadcrumbs ------------------------------------------------------- */
.crumbs { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--on-dark-soft); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.crumbs a:hover { color: var(--amber-400); }
.crumbs span { color: var(--amber-400); }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--navy-900); color: var(--on-dark-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; border-top: 3px solid var(--amber-500); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 1rem; }
.footer-about { font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-head); margin-bottom: 1rem; }
.footer-col a { display: block; padding: 0.3rem 0; font-size: 0.95rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--amber-400); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.85rem; }

/* ---- Reveal-on-scroll -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card--hover:hover, .position:hover, .tile:hover img { transform: none; }
}

/* ---- Misc -------------------------------------------------------------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--amber-500); color: #1c1003; padding: 0.6rem 1rem; z-index: 100; border-radius: 0 0 8px 0; font-family: var(--font-head); font-weight: 700; }
.skip-link:focus { left: 0; }
.kicker-band { background: var(--amber-soft); border-block: 1px solid var(--amber-500); }
.prose p { margin-bottom: 1.1rem; }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose ul { display: grid; gap: 0.6rem; margin-bottom: 1.1rem; }
.prose ul li { position: relative; padding-left: 1.4rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border-radius: 2px; background: var(--amber-500); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 5vw, 3.5rem); }
