/* Al Ahsan Technology — galvanized steel, cool concrete, oxide.
   Display: Archivo (wide + heavy = mass). Body: Instrument Sans. Data: IBM Plex Mono. */

:root {
  --ink:      #14181b;
  --steel:    #333c45;
  --zinc:     #5b636a;   /* 5.28 on --paper, 4.52 on --concrete */
  --mist:     #a7aeb4;   /* 7.95 on --ink */
  --dim:      #8f979e;   /* 6.03 on --ink — tertiary text on dark bands */
  --line:     #c8cccd;
  --concrete: #dcdedd;
  --paper:    #ecefee;
  --white:    #fafbfb;
  --oxide:    #a63c19;   /* 5.53 on --paper, 4.73 on --concrete */
  --oxide-lo: #8f3416;
  --amber:    #f0b429;

  --wrap: 1180px;
  --gut: clamp(20px, 4vw, 40px);
  --band: clamp(56px, 8vw, 112px);

  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Instrument Sans", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--oxide); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--oxide-lo); }

:focus-visible {
  outline: 2px solid var(--oxide);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; font-family: var(--f-mono); font-size: 13px;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); font-variation-settings: "wdth" 118; line-height: 0.92; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-variation-settings: "wdth" 105; letter-spacing: -0.005em; }

p { margin: 0 0 1.1em; max-width: 66ch; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.5; color: var(--steel); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxide);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- header ---------- */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(236, 239, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.head-inner { display: flex; align-items: center; gap: 20px; min-height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-mark { color: var(--steel); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--f-display); font-weight: 800; font-variation-settings: "wdth" 108;
  text-transform: uppercase; font-size: 15px; letter-spacing: -0.01em;
}
.brand-sub { font-family: var(--f-mono); font-size: 10.5px; color: var(--zinc); letter-spacing: 0.04em; }

.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }

.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--steel); text-decoration: none;
  padding: 9px 12px; border: 0; background: none; cursor: pointer;
  border-radius: 2px;
}
.nav-link:hover { color: var(--ink); background: var(--concrete); }
.nav-link[aria-current="page"], .nav-toggle.is-active { color: var(--oxide); }

.nav-group { position: relative; }
.chev { transition: transform 0.18s ease; opacity: 0.6; }
.nav-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.nav-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 210px; list-style: none; margin: 0; padding: 6px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(20, 24, 27, 0.13);
  display: none;
}
.nav-toggle[aria-expanded="true"] + .nav-menu { display: block; }
.nav-menu a {
  display: block; padding: 9px 12px;
  font-family: var(--f-body); font-size: 14.5px; color: var(--steel); text-decoration: none;
}
.nav-menu a:hover { background: var(--paper); color: var(--ink); }
.nav-menu a[aria-current="page"] { color: var(--oxide); }

.call-btn {
  display: inline-flex; flex-direction: column; line-height: 1.15;
  margin-left: 10px; padding: 8px 15px;
  background: var(--ink); color: var(--white); text-decoration: none;
  border-radius: 2px;
}
.call-btn:hover { background: var(--oxide); color: var(--white); }
.call-label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.call-num { font-family: var(--f-mono); font-size: 13px; font-weight: 500; white-space: nowrap; }

.burger { display: none; }

/* ---------- hero ---------- */

.hero { border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 88px) clamp(40px, 5vw, 72px);
}
.hero-copy { max-width: 620px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--oxide); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 22px; text-decoration: none; border-radius: 2px;
  border: 1px solid var(--ink);
}
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--oxide); border-color: var(--oxide); color: var(--white); }
.btn-ghost { background: none; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* crane drawing */
.hero-fig { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.crane { width: 100%; height: auto; color: var(--steel); }
.crane-cap {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--zinc); margin-top: 6px; text-align: right;
}

/* ---------- capability strip ---------- */

.strip { background: var(--ink); color: var(--white); }
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(250, 251, 251, 0.14);
}
.stat { padding: 26px 22px; border-right: 1px solid rgba(250, 251, 251, 0.14); }
.stat-num {
  font-family: var(--f-display); font-variation-settings: "wdth" 118; font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1; letter-spacing: -0.02em;
}
.stat-num span { color: var(--amber); font-size: 0.62em; }
.stat-lab {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist); margin-top: 9px;
}

/* ---------- bands ---------- */

.band { padding-block: var(--band); }
.band-line { border-top: 1px solid var(--line); }
.band-dark { background: var(--ink); color: var(--concrete); }
.band-dark h2, .band-dark h3 { color: var(--white); }
/* .lead is --steel, which is all but invisible on --ink (1.59:1) */
.band-dark .lead { color: var(--mist); }
.band-dark .ledger .note, .band-dark .form-note { color: var(--dim); }
.band-dark .eyebrow { color: var(--amber); }
.band-dark .eyebrow::after { background: rgba(250, 251, 251, 0.2); }
.band-dark a { color: var(--amber); }
.band-steel { background: var(--concrete); }

.band-head { margin-bottom: clamp(28px, 4vw, 48px); }
.band-head p { margin-top: 16px; }

/* page header (interior pages) */
.page-head { padding-block: clamp(40px, 5vw, 72px) clamp(28px, 3.5vw, 44px); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 18px; }
.page-head .lead { max-width: 60ch; }

.crumb {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--zinc); margin: 0 0 16px;
}
.crumb a { color: var(--zinc); text-decoration: none; }
.crumb a:hover { color: var(--oxide); }

/* ---------- prose ---------- */

.prose h2 { margin-top: 2em; margin-bottom: 0.7em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; margin-bottom: 0.5em; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.3em; max-width: 66ch; }
.prose ul li { position: relative; padding-left: 22px; margin-bottom: 9px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 1px; background: var(--oxide);
}
.prose-narrow { max-width: 72ch; }

/* two-column text */
.cols2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }

/* ---------- capability cards ---------- */

.caps { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cap { background: var(--paper); padding: 24px 22px 22px; }
.cap h3 { margin-bottom: 12px; }
.cap-ops { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.cap-ops li {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--steel); background: var(--concrete); padding: 4px 8px; border-radius: 2px;
}
.cap-ops li::before { display: none; }

/* ---------- ledger table ---------- */

.ledger-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ledger { width: 100%; border-collapse: collapse; min-width: 520px; }
.ledger caption {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--zinc); text-align: left; padding-bottom: 14px;
}
.ledger th {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--zinc);
  text-align: left; padding: 0 16px 11px 0; border-bottom: 1px solid var(--ink);
}
.ledger th:last-child, .ledger td:last-child { text-align: right; padding-right: 0; }
.ledger td { padding: 15px 16px 15px 0; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.ledger tbody tr:hover { background: rgba(20, 24, 27, 0.03); }
.ledger .item { font-weight: 500; }
.ledger .spec {
  font-family: var(--f-mono); font-size: 15px; font-weight: 500; color: var(--ink); white-space: nowrap;
}
.ledger .spec.none { color: var(--zinc); }
.ledger .note { display: block; font-size: 14px; color: var(--zinc); margin-top: 3px; }

.band-dark .ledger th { color: var(--mist); border-bottom-color: var(--mist); }
.band-dark .ledger td { border-bottom-color: rgba(250, 251, 251, 0.16); }
.band-dark .ledger .spec { color: var(--white); }
.band-dark .ledger tbody tr:hover { background: rgba(250, 251, 251, 0.04); }

/* ---------- switch list (safety switches) ---------- */

.switches { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.switch { background: var(--paper); padding: 26px clamp(20px, 3vw, 32px); display: grid; grid-template-columns: 190px 1fr; gap: clamp(16px, 3vw, 40px); }
.switch h3 { color: var(--ink); }
.switch p { margin: 0; }

/* ---------- feature / story ---------- */

.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.story-quote {
  font-family: var(--f-display); font-variation-settings: "wdth" 100; font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.22; letter-spacing: -0.015em;
  text-transform: none; color: var(--white); margin: 0 0 20px;
}
.story-fix {
  border-left: 2px solid var(--amber); padding-left: 20px; margin-top: 26px;
}
.story-fix h3 { font-size: 1rem; margin-bottom: 10px; }

/* ---------- catalogue ---------- */

.sheets { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px, 3vw, 36px); }
.sheet { background: var(--white); border: 1px solid var(--line); padding: 14px; }
.sheet img { border: 1px solid var(--line); background: var(--white); }
.sheet figcaption {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--zinc); margin-top: 12px; display: flex; justify-content: space-between; gap: 10px;
}
.sheet figcaption a { text-decoration: none; }

.spec-block { margin-bottom: clamp(40px, 6vw, 72px); }
.spec-block:last-child { margin-bottom: 0; }
.spec-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.spec-head h2 { margin: 0; }
.spec-tag {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--oxide); padding: 5px 10px; border-radius: 2px;
}

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); }
.contact-lines { list-style: none; margin: 0; padding: 0; }
.contact-lines li { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(250, 251, 251, 0.16); align-items: baseline; }
.contact-lines dt, .contact-lines .k {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
}
.contact-lines .v { font-family: var(--f-mono); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 500; color: var(--white); }
.contact-lines .v a { color: var(--white); text-decoration: none; }
.contact-lines .v a:hover { color: var(--amber); }
.contact-ar { font-family: var(--f-body); font-size: 1.15rem; color: var(--white); margin-bottom: 6px; }

/* ---------- form ---------- */

.form { display: grid; gap: 18px; max-width: 620px; }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--zinc);
}
.field input, .field textarea {
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  padding: 12px 14px; width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--oxide); outline: none; box-shadow: 0 0 0 3px rgba(179, 66, 29, 0.14); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 14.5px; color: var(--zinc); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- cta ---------- */

.cta { text-align: center; }
.cta h2 { margin-bottom: 18px; }
.cta .lead { margin-inline: auto; }
.cta .hero-actions { justify-content: center; }

/* ---------- footer ---------- */

.site-foot { background: var(--ink); color: var(--mist); padding-block: clamp(44px, 6vw, 72px) 28px; font-size: 15px; }
.foot-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); padding-bottom: 36px; }
.site-foot h3 { color: var(--white); font-size: 12px; font-variation-settings: "wdth" 100; letter-spacing: 0.1em; margin-bottom: 14px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 8px; }
.site-foot a { color: var(--mist); text-decoration: none; }
.site-foot a:hover { color: var(--amber); }
.foot-ar { font-size: 15px; color: var(--concrete); margin-bottom: 10px; }
.foot-addr { font-size: 14.5px; margin-bottom: 12px; }
.foot-contact { font-family: var(--f-mono); font-size: 14px; line-height: 1.8; }
.foot-contact a { color: var(--white); }
.foot-bot { border-top: 1px solid rgba(250, 251, 251, 0.14); padding-top: 22px; display: grid; gap: 8px; }
.foot-bot p { font-size: 13px; margin: 0; max-width: none; }
.foot-spec { color: var(--dim); font-size: 12px; }

/* ---------- crane assembly animation ---------- */

/* The drawing is visible by default, so it still reads with JS off or
   animation blocked. The `js` class (set inline in <head>, before paint)
   hides the parts only when we know we can animate them back in. */
.crane .part, .crane .grow-r, .crane .grow-l, .crane .drop, .crane .fade { transform-box: view-box; }
.js .crane .part, .js .crane .grow-r, .js .crane .grow-l,
.js .crane .drop, .js .crane .fade { opacity: 0; }
.crane.go .part { animation: rise 0.5s cubic-bezier(0.22, 0.9, 0.3, 1) forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.crane.go .grow-r { animation: growR 0.55s cubic-bezier(0.22, 0.9, 0.3, 1) forwards; transform-origin: 204px 145px; }
.crane.go .grow-l { animation: growR 0.5s cubic-bezier(0.22, 0.9, 0.3, 1) forwards; transform-origin: 204px 145px; }
@keyframes growR { from { opacity: 0; transform: scaleX(0.04); } to { opacity: 1; transform: scaleX(1); } }

.crane.go .drop { animation: drop 0.5s ease-out forwards; transform-origin: 338px 150px; }
@keyframes drop { from { opacity: 0; transform: scaleY(0.05); } to { opacity: 1; transform: scaleY(1); } }

.crane.go .fade { animation: fade 0.6s ease forwards; }
@keyframes fade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .js .crane .part, .js .crane .grow-r, .js .crane .grow-l,
  .js .crane .drop, .js .crane .fade { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* reveal on scroll — same rule: only hide when JS is there to reveal it again */
.js .rv { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---------- responsive ---------- */

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-fig { max-width: 340px; margin-top: 8px; }
  .story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(250, 251, 251, 0.14); }
}

@media (max-width: 860px) {
  .burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 0 9px;
    background: none; border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
  }
  .burger span { display: block; height: 1.5px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 12px var(--gut) 22px; max-height: calc(100vh - 68px); overflow-y: auto;
    box-shadow: 0 16px 30px rgba(20, 24, 27, 0.12);
  }
  .site-nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { padding: 12px 0; font-size: 13px; }
  .nav-link:hover { background: none; }
  .nav-group { border-top: 1px solid var(--line); }
  /* The dropdown is already open on mobile, so the toggle becomes a plain
     group heading rather than a control. */
  .nav-toggle {
    pointer-events: none; cursor: default;
    color: var(--zinc); font-size: 10.5px; letter-spacing: 0.14em;
    padding: 14px 0 2px;
  }
  .nav-toggle .chev { display: none; }
  .nav-menu {
    position: static; display: block; border: 0; box-shadow: none;
    padding: 4px 0 12px; min-width: 0; background: none;
  }
  .nav-menu a { padding: 9px 0 9px 16px; border-left: 1px solid var(--line); }
  .nav-menu a:hover { background: none; }
  .call-btn { margin: 16px 0 0; align-self: flex-start; }
  .head-inner { position: relative; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cols2 { grid-template-columns: 1fr; }
  .switch { grid-template-columns: 1fr; gap: 10px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .strip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .call-num { font-size: 12px; }
}

/* ---------- photographs ----------
   The company's own site photographs, recovered from the previous website.
   They are small 2000s-era originals (100-240px), so they are shown at tile
   scale rather than blown up, presented as an archive strip. */

/* A real gap with a border per tile, rather than 1px gaps over a coloured
   container: the last row is rarely full, and the container colour showing
   through the empty tracks reads as a broken layout. */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.shot { position: relative; margin: 0; background: var(--concrete); border: 1px solid var(--line); }
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.shot figcaption {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  background: var(--paper);
  padding: 8px 10px;
}

/* a labelled row of three, used on the hiring page */
.shots-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.shots-3 .shot img { aspect-ratio: 16 / 7; }

.band-dark .shot { background: var(--steel); }
.band-dark .shot figcaption { background: var(--ink); color: var(--mist); }
.band-dark .shot { border-color: rgba(250, 251, 251, 0.16); }

/* Sits on the dark footer, so --zinc here is 2.92:1 — the line was there but
   effectively unreadable. Amber on the figure matches the stat strip and gives
   the eye something to land on. */
.foot-count {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--dim);
  margin-top: 6px;
}
.foot-count span { color: var(--amber); font-weight: 500; font-size: 13.5px; }

/* Contact details on a light ground. Previously this reused .foot-contact,
   whose links are --white — 1.12:1 here, i.e. invisible. */
.contact-lines-light {
  font-family: var(--f-mono);
  font-size: 15px;
  line-height: 1.9;
}
.contact-lines-light a { color: var(--oxide); }
.contact-lines-light a:hover { color: var(--oxide-lo); }
