@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   Sandton Dhaka Ltd. — Industrial authority
   Hand-written. No framework. Hard edges, ruled structure.
   ============================================================ */

:root {
  --ink: #0A0D10;
  --graphite: #12171C;
  --steel: #1C242C;
  --steel-2: #232D36;
  --rule-dark: #2A343E;

  --paper: #F5F3EE;
  --paper-2: #ECE8E0;
  --paper-3: #E2DDD2;
  --rule: #D6D1C6;

  --brass: #C39A4E;
  --brass-lt: #E0BE7C;
  --steel-blue: #2A5B84;

  --text: #10151A;
  --muted: #5E6870;
  --muted-dark: #9AA5AE;

  --display: 'Archivo', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  --container: 1220px;
  --gutter: 20px;
  --header-h: 64px;
  --util-h: 32px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width: 900px) { :root { --gutter: 32px; --header-h: 68px; } }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--brass); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout primitives ---------- */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.ruled { position: relative; }

.band { padding: 52px 0; position: relative; }
@media (min-width: 900px) { .band { padding: 76px 0; } }
.band-tight { padding: 40px 0; }
@media (min-width: 900px) { .band-tight { padding: 52px 0; } }

/* Hard hairline where two light bands meet */
.band-paper + .band-paper-2, .band-paper-2 + .band-paper { border-top: 1px solid var(--rule); }

.band-paper   { background: var(--paper); }
.band-paper-2 { background: var(--paper-2); }
.band-dark    { background: var(--graphite); color: var(--paper); }
.band-ink     { background: var(--ink); color: var(--paper); }

.band-dark h1, .band-dark h2, .band-dark h3, .band-ink h1, .band-ink h2, .band-ink h3 { color: #fff; }

/* Diagonal hatch texture on dark bands */
.band-dark::before, .band-ink::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.045) 0 1px, transparent 1px 7px);
  pointer-events: none;
}
.band-dark > *, .band-ink > * { position: relative; z-index: 1; }

.grid { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .g-2 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(3, 1fr); }
  .g-4 { grid-template-columns: repeat(4, 1fr); }
  .g-5-7 { grid-template-columns: 5fr 7fr; gap: 44px; }
  .g-4-8 { grid-template-columns: 4fr 8fr; gap: 44px; }
  .g-7-5 { grid-template-columns: 7fr 5fr; gap: 44px; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Type utilities ---------- */

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
.eyebrow::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 90px;
  background: var(--rule);
}
.eyebrow .num { color: var(--brass); }
.band-dark .eyebrow, .band-ink .eyebrow { color: var(--muted-dark); }
.band-dark .eyebrow::after, .band-ink .eyebrow::after { background: var(--rule-dark); }

.h-xl { font-size: clamp(1.85rem, 3.9vw, 2.95rem); line-height: 1.0; text-transform: uppercase; }
.h-lg { font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.04; text-transform: uppercase; }
.h-md { font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.12; }
.h-sm { font-size: 1rem; line-height: 1.25; font-weight: 700; }

.lead { font-size: clamp(.95rem, 1.15vw, 1.05rem); line-height: 1.6; color: #2C343B; max-width: 64ch; }
.band-dark .lead, .band-ink .lead { color: #C9D1D8; }

.muted { color: var(--muted); }
.band-dark .muted, .band-ink .muted { color: var(--muted-dark); }
.small { font-size: .855rem; line-height: 1.58; }
.xsmall { font-size: .755rem; line-height: 1.5; }
.accent { color: var(--brass); }

.measure { max-width: 66ch; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }
.btn:hover { background: var(--brass); color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.band-dark .btn-ghost, .band-ink .btn-ghost { color: #fff; border-color: var(--rule-dark); }
.band-dark .btn-ghost:hover, .band-ink .btn-ghost:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }

.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: #fff; color: var(--ink); }

/* Inline text link with brass rule */
.tlink {
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--brass);
  transition: gap .25s var(--ease);
}
.tlink:hover { gap: 16px; border-bottom-color: var(--ink); }
/* Dark bands: the rule shifts, not the text — several instances carry an inline
   white colour, so hover is expressed through the border rather than the fill. */
.band-dark .tlink:hover, .band-ink .tlink:hover, .hero .tlink:hover { border-bottom-color: var(--brass-lt); }

/* ---------- Utility bar ---------- */

.utilbar {
  background: var(--ink);
  color: var(--muted-dark);
  height: var(--util-h);
  font-size: .74rem;
  letter-spacing: .06em;
  display: none;
}
@media (min-width: 1000px) { .utilbar { display: block; } }
.utilbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.utilbar a { transition: color .2s; }
.utilbar a:hover { color: var(--brass-lt); }
.utilbar .sep { color: #39424A; margin: 0 14px; }
.utilbar .tag { font-family: var(--display); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); font-size: .68rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s var(--ease);
}
.site-header.stuck { box-shadow: 0 1px 0 var(--rule), 0 10px 30px -18px rgba(10,13,16,.4); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; min-height: 44px; }
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display); font-weight: 900; font-size: .98rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.brand-sub {
  font-family: var(--display); font-weight: 600; font-size: .52rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

.mainnav { display: none; align-items: center; gap: 4px; }
@media (min-width: 1100px) { .mainnav { display: flex; } }
.mainnav > a, .navgroup > button {
  display: inline-flex; align-items: center; gap: 7px;
  height: var(--header-h); padding: 0 12px;
  font-family: var(--display); font-weight: 600; font-size: .72rem;
  letter-spacing: .09em; text-transform: uppercase;
  background: none; border: 0; color: var(--ink);
  position: relative;
}
.mainnav > a::after, .navgroup > button::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 0;
  height: 3px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.mainnav > a:hover::after, .navgroup:hover > button::after, .mainnav > a.is-active::after { transform: scaleX(1); }
.mainnav > a.is-active { color: var(--ink); }

.navgroup { position: relative; }
.navgroup .caret { transition: transform .25s var(--ease); }
.navgroup:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 330px;
  background: var(--ink);
  border-top: 3px solid var(--brass);
  padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.navgroup:hover .dropdown, .navgroup:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 22px; color: #C9D1D8; font-size: .86rem;
  border-left: 3px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
}
.dropdown a .dn { font-family: var(--display); font-weight: 700; font-size: .68rem; color: var(--brass); letter-spacing: .1em; }
.dropdown a:hover { background: var(--steel); color: #fff; border-left-color: var(--brass); }

.header-cta { display: none; }
@media (min-width: 1100px) { .header-cta { display: inline-flex; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; background: var(--ink); border: 0;
}
@media (min-width: 1100px) { .burger { display: none; } }
.burger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: #fff;
  transition: transform .3s var(--ease), top .2s;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Mobile drawer ---------- */

.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink); color: #fff;
  padding: calc(var(--header-h) + 32px) var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
}
body.nav-open .drawer { transform: translateX(0); }
body.nav-open { overflow: hidden; }
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; padding: 8px 0;
  border-bottom: 1px solid var(--rule-dark);
  font-family: var(--display); font-weight: 700; font-size: 1.28rem;
  letter-spacing: .02em; text-transform: uppercase;
}
.drawer a .dn { font-size: .68rem; color: var(--brass); letter-spacing: .16em; }
.drawer .sub a { font-size: .95rem; font-weight: 600; min-height: 48px; padding-left: 18px; color: #C9D1D8; text-transform: none; letter-spacing: 0; }
.drawer .drawer-foot { margin-top: 32px; }

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 8px);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

/* Split: type panel left, framed image plate right.
   Hero + sector index fill exactly one viewport. */
.hero-split { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 5fr 6fr;
    align-items: stretch;
    height: calc(100svh - var(--header-h) - var(--util-h) - 56px);
    min-height: 430px;
    max-height: 620px;
  }
}

.hero-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 0 38px;
  order: 2;
}
@media (min-width: 900px) { .hero-panel { padding: 44px 44px 44px 0; order: 0; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .64rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brass);
  margin: 0 0 16px;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--brass); flex: none; }

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero .lead {
  color: #B9C2CA; margin: 20px 0 0; max-width: 46ch; font-size: .9rem;
  padding-top: 18px; border-top: 1px solid var(--rule-dark);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.hero-figure {
  position: relative; order: 1; overflow: hidden;
  min-height: 200px; height: 28vh; max-height: 270px;
  margin: 0 calc(var(--gutter) * -1);
}
@media (min-width: 900px) {
  .hero-figure {
    order: 0; height: auto; max-height: none; min-height: 0;
    margin: 0;
    border-left: 1px solid rgba(255,255,255,.15);
  }
}
.hero-figure img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 74%;
  filter: saturate(.8) contrast(1.08) brightness(.88);
}
.hero-figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,13,16,.82) 0%, rgba(10,13,16,.14) 30%, rgba(10,13,16,.06) 100%);
}
@media (max-width: 899px) {
  .hero-figure::after { background: linear-gradient(to bottom, rgba(10,13,16,.40), rgba(10,13,16,.18)); }
}
@media (min-width: 900px) {
  .hero-image-pan { animation: pan 40s ease-in-out infinite alternate; will-change: transform; }
}
@keyframes pan { from { transform: scale(1.02); } to { transform: scale(1.09) translate(-1%, -1%); } }
@media (prefers-reduced-motion: reduce) { .hero-image-pan { animation: none; } }

/* Sector index — an orientation strip, not a scoreboard. */
.sectorbar { background: var(--steel); border-top: 1px solid var(--rule-dark); }
.sectorbar .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--rule-dark);
}
@media (min-width: 640px) { .sectorbar .row { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .sectorbar .row { grid-template-columns: repeat(7, 1fr); } }
.sectorbar a {
  display: block;
  padding: 13px 14px;
  border-right: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  transition: background .25s var(--ease);
}
@media (min-width: 1000px) { .sectorbar a { border-bottom: 0; } }
.sectorbar a:hover { background: var(--steel-2); }
.sectorbar .sn {
  font-family: var(--display); font-weight: 800; font-size: .62rem;
  letter-spacing: .14em; color: var(--brass); margin: 0 0 5px;
  font-variant-numeric: tabular-nums;
}
.sectorbar .sl {
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; text-transform: uppercase; color: #DCE2E7; margin: 0;
  line-height: 1.2;
}
.sectorbar a:hover .sl { color: #fff; }

/* Factual figure grid — used on inner pages only, never in the hero. */
.figrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 800px) { .figrow { grid-template-columns: repeat(4, 1fr); } }
.figrow > div { padding: 18px 20px 18px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 800px) {
  .figrow > div { border-left: 1px solid var(--rule); padding-left: 20px; }
  /* Clear the rule at the start of every row, not just the first cell,
     so a figure set of more than four wraps cleanly. */
  .figrow > div:nth-child(4n+1) { border-left: 0; padding-left: 0; }
}
.figrow .fig {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; margin: 0;
}
.figrow .cap {
  font-family: var(--display); font-weight: 600; font-size: .625rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 7px 0 0;
}

/* ---------- Page banner (inner pages) ---------- */

.pagehead { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.pagehead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pagehead .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,13,16,.93), rgba(10,13,16,.62)),
              repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 8px);
}
.pagehead .inner { position: relative; z-index: 2; padding: 44px 0 40px; }
@media (min-width: 900px) { .pagehead .inner { padding: 68px 0 60px; } }
.crumbs {
  font-family: var(--display); font-weight: 600; font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 16px;
}
.crumbs a:hover { color: var(--brass-lt); }
.crumbs .sep { margin: 0 10px; color: #454F58; }

/* ---------- Ruled index rows (concerns, news, awards) ---------- */

.rowlist { border-top: 1px solid var(--rule); }
.band-dark .rowlist, .band-ink .rowlist { border-color: var(--rule-dark); }

.rowitem {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.band-dark .rowitem, .band-ink .rowitem { border-color: var(--rule-dark); }
@media (min-width: 900px) {
  .rowitem { grid-template-columns: 60px 3.2fr 4.4fr 128px; align-items: center; padding: 20px 0; gap: 22px; }
  .rowitem:hover { background: var(--paper-2); padding-left: 16px; padding-right: 16px; }
  .band-dark .rowitem:hover, .band-ink .rowitem:hover { background: var(--steel); }
}
.rowitem .rn {
  font-family: var(--display); font-weight: 800; font-size: .78rem;
  letter-spacing: .1em; color: var(--brass); font-variant-numeric: tabular-nums; padding-top: 2px;
}
.rowitem .rt {
  font-family: var(--display); font-weight: 700; font-size: 1rem; line-height: 1.2;
  transition: color .25s var(--ease);
}
@media (min-width: 900px) { .rowitem .rt { font-size: 1.08rem; } }
.rowitem:hover .rt { color: var(--steel-blue); }
.band-dark .rowitem:hover .rt, .band-ink .rowitem:hover .rt { color: var(--brass-lt); }
.rowitem .rd { color: var(--muted); font-size: .855rem; }
.band-dark .rowitem .rd, .band-ink .rowitem .rd { color: var(--muted-dark); }
.rowitem .rgo {
  font-family: var(--display); font-weight: 700; font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); display: none;
}
@media (min-width: 900px) { .rowitem .rgo { display: flex; align-items: center; gap: 9px; justify-content: flex-end; } }
.rowitem:hover .rgo { color: var(--brass); }
@media (max-width: 899px) {
  .rowitem .rd { grid-column: 2; }
  .rowitem .rn { grid-row: 1 / span 2; }
}

/* ---------- Concern tiles ---------- */

.tile { position: relative; display: block; overflow: hidden; background: var(--ink); color: #fff; }
.tile img {
  width: 100%; height: 230px; object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
  filter: saturate(.72) contrast(1.06);
}
@media (min-width: 900px) { .tile img { height: 250px; } }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,13,16,.94) 0%, rgba(10,13,16,.55) 42%, rgba(10,13,16,.12) 100%);
}
.tile:hover img { transform: scale(1.06); filter: saturate(.95) contrast(1.02); }
.tile .tbody { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 18px 20px; }
.tile .tno {
  font-family: var(--display); font-weight: 800; font-size: .66rem; letter-spacing: .18em;
  color: var(--brass); margin: 0 0 7px;
}
.tile .tname { font-family: var(--display); font-weight: 700; font-size: 1.02rem; line-height: 1.15; text-transform: uppercase; margin: 0; }
.tile .tsec { font-size: .76rem; color: #B6BFC7; margin: 6px 0 0; }
.tile .tbar { height: 3px; width: 0; background: var(--brass); margin-top: 12px; transition: width .45s var(--ease); }
.tile:hover .tbar { width: 56px; }

/* ---------- Chairman ---------- */

.portrait { position: relative; background: var(--steel); }
.portrait img { width: 100%; height: 330px; object-fit: cover; filter: grayscale(1) contrast(1.1); }
@media (min-width: 900px) { .portrait img { height: 400px; } }
/* The plate spans the full width of the portrait. An inset right edge was tried
   and fails on the four-up board grid, where the longer names clip. */
.portrait .plate {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: var(--brass); color: var(--ink); padding: 12px 18px;
}
.portrait .plate .pn { font-family: var(--display); font-weight: 800; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase; margin: 0; }
.portrait .plate .pr { font-size: .72rem; font-weight: 600; margin: 2px 0 0; }

.quotemark {
  font-family: var(--display); font-weight: 900; font-size: 3.2rem; line-height: .6;
  color: var(--brass); display: block; margin-bottom: 10px;
}
blockquote { margin: 0; }
blockquote p {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.34; letter-spacing: -.01em;
}

/* ---------- Principle / feature blocks ---------- */

.pblock { border-top: 2px solid var(--brass); padding-top: 16px; }
.pblock .pn {
  font-family: var(--display); font-weight: 800; font-size: .66rem;
  letter-spacing: .18em; color: var(--brass); margin: 0 0 8px;
}
.pblock h3 { font-size: .98rem; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0; }
.pblock p { font-size: .85rem; color: var(--muted); }
.band-dark .pblock p, .band-ink .pblock p { color: var(--muted-dark); }
.band-dark .pblock, .band-ink .pblock { border-top-color: var(--brass); }

/* ---------- Award / certification chips ---------- */

.awards { display: grid; gap: 0; border-top: 1px solid var(--rule-dark); }
@media (min-width: 700px) { .awards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .awards { grid-template-columns: repeat(4, 1fr); } }
.award {
  padding: 22px 20px 22px 0; border-bottom: 1px solid var(--rule-dark);
}
/* Left rule on every cell, cleared at the start of each row. The row-start
   selector is restated at each breakpoint because :nth-child raises specificity
   above the bare .award rule — without the restatement the two-up reset would
   leak into the four-up layout and drop the rule on odd cells. */
@media (min-width: 700px) {
  .award:nth-child(n) { border-left: 1px solid var(--rule-dark); padding-left: 20px; }
  .award:nth-child(2n+1) { border-left: 0; padding-left: 0; }
}
@media (min-width: 1100px) {
  .award:nth-child(n) { border-left: 1px solid var(--rule-dark); padding-left: 20px; }
  .award:nth-child(4n+1) { border-left: 0; padding-left: 0; }
}
.award .ay {
  font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--brass);
  font-variant-numeric: tabular-nums; line-height: 1; margin: 0;
}
.award .at { font-family: var(--display); font-weight: 700; font-size: .85rem; margin: 9px 0 0; text-transform: uppercase; line-height: 1.25; }
.award .ab { font-size: .76rem; color: var(--muted-dark); margin: 6px 0 0; }

/* ---------- News ---------- */

.newsitem { display: block; border-top: 1px solid var(--rule); padding: 16px 0; transition: background .3s var(--ease), padding .3s var(--ease); }
.newsitem:last-child { border-bottom: 1px solid var(--rule); }
.band-dark .newsitem, .band-ink .newsitem { border-color: var(--rule-dark); }
/* Row inset on hover, matching .rowitem. Desktop only — on touch the inset
   fires on tap and reads as a layout jump. */
@media (min-width: 900px) {
  .newsitem:hover { background: var(--paper-2); padding-left: 16px; padding-right: 16px; }
  .band-paper-2 .newsitem:hover { background: var(--paper-3); }
  .band-dark .newsitem:hover, .band-ink .newsitem:hover { background: var(--steel); }
}
.band-dark .newsitem:hover h3, .band-ink .newsitem:hover h3 { color: var(--brass-lt); }
.meta {
  font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brass); display: flex; gap: 14px; align-items: center; margin: 0 0 10px;
}
.meta .cat { color: var(--muted); }
.newsitem h3, .newscard h3 { font-size: .98rem; line-height: 1.28; font-weight: 700; transition: color .2s; }
.newsitem:hover h3, .newscard:hover h3 { color: var(--steel-blue); }
.newscard { display: block; background: var(--paper); border: 1px solid var(--rule); }
.newscard img { width: 100%; height: 160px; object-fit: cover; transition: transform .6s var(--ease); }
.newscard .nc { padding: 18px; }
.newscard:hover img { transform: scale(1.05); }
.newscard .imgwrap { display: block; overflow: hidden; }

/* ---------- Figures / data table ---------- */

.dtable { width: 100%; border-collapse: collapse; font-size: .855rem; }
.dtable th, .dtable td { text-align: left; padding: 10px 16px 10px 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.dtable th {
  font-family: var(--display); font-weight: 700; font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); border-bottom-color: var(--ink);
}
.dtable td.num { font-variant-numeric: tabular-nums; font-family: var(--display); font-weight: 700; }

/* ---------- Forms ---------- */

.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--display); font-weight: 700; font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; font: inherit; font-size: .9rem;
  background: #fff; border: 1px solid var(--rule); border-radius: 0; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: inset 0 -3px 0 var(--brass);
}

/* ---------- Callout ---------- */

.callout { border-left: 3px solid var(--brass); background: var(--paper-2); padding: 16px 20px; }
.band-dark .callout, .band-ink .callout { background: var(--steel); }
.callout .ct {
  font-family: var(--display); font-weight: 700; font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 7px;
}

/* ---------- CTA strip ---------- */

.ctastrip { background: var(--brass); color: var(--ink); }
.ctastrip .wrap { display: flex; flex-direction: column; gap: 18px; padding-top: 34px; padding-bottom: 34px; }
@media (min-width: 900px) {
  .ctastrip .wrap { flex-direction: row; align-items: center; justify-content: space-between; padding-top: 38px; padding-bottom: 38px; }
}
.ctastrip h2 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); text-transform: uppercase; }
.ctastrip p { font-size: .875rem; }
.ctastrip .btn { background: var(--ink); color: #fff; }
.ctastrip .btn:hover { background: #fff; color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: var(--muted-dark); padding: 48px 0 0; position: relative; font-size: .855rem; }
.site-footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 7px);
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer h4 {
  font-family: var(--display); font-weight: 700; font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 14px;
}
.fgrid { display: grid; gap: 30px; }
@media (min-width: 700px) { .fgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .fgrid { grid-template-columns: 2.4fr 1.4fr 1.4fr 2fr; gap: 36px; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; font-size: .83rem; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--brass-lt); }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: var(--muted-dark); }
.footbar {
  margin-top: 38px; border-top: 1px solid var(--rule-dark);
  padding: 16px 0 20px; font-size: .74rem;
  display: flex; flex-direction: column; gap: 8px;
}
@media (min-width: 800px) { .footbar { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Reveal on scroll ---------- */

[data-reveal] { opacity: 0; transform: translateY(22px); }
.reveal-ready [data-reveal] { transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Misc ---------- */

.hr-brass { height: 3px; width: 52px; background: var(--brass); border: 0; margin: 0 0 20px; }
.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 20px; }
.stack-lg > * + * { margin-top: 34px; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
}
.skip:focus { left: 0; }
