/* =====================================================================
   RESOURCE CENTRE
   Hub cards, drawing-register filters, FAQ accordion, standards library,
   glossary, careers and downloads.

   Loaded AFTER futuristic.css so these components keep their own resting
   styles; everything here reuses the shared card tokens (--card-bd,
   --card-shadow, --arc, --gold-ink) so the section reads as part of the
   same house style rather than a bolt-on.
   ===================================================================== */

/* ---------- Hub: stat strip ---------- */
.res-strip { background: var(--navy-deep); color: #fff; padding: 30px 0; }
.res-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.res-strip-grid > div { display: flex; flex-direction: column; gap: 4px; }
.res-strip-grid b {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1; color: var(--gold-light);
}
.res-strip-grid span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); letter-spacing: 0.02em; }
@media (max-width: 760px) { .res-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

/* ---------- Hub: cards ---------- */
.res-grid { display: grid; gap: clamp(20px, 2.6vw, 28px); }
/* 3 picture cards on one row, then 5 compact tiles on one row — both grids
   resolve full at desktop so the section never leaves an orphan card. */
.res-grid--feature { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 52px; }
.res-grid--tiles { grid-template-columns: repeat(auto-fit, minmax(min(196px, 100%), 1fr)); margin-top: clamp(20px, 2.6vw, 28px); }
@media (max-width: 940px) { .res-grid--feature { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .res-grid--feature { grid-template-columns: 1fr; } }
.res-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: var(--card-bd);
  border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.res-card:hover { transform: translateY(-6px); border-color: rgba(199, 154, 46, 0.4); box-shadow: var(--card-shadow-hv), var(--card-ring-gold); }
.res-card-media { display: block; position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--off-white); }
.res-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.res-card:hover .res-card-media img { transform: scale(1.06); }
.res-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 24, 57, 0) 35%, rgba(11, 24, 57, 0.42) 100%);
}
.res-card-body { display: flex; flex-direction: column; flex: 1; padding: 30px 24px 24px; position: relative; }
.res-card-ic {
  position: absolute; top: -24px; right: 24px;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold-light);
  border: 2px solid var(--white); box-shadow: 0 8px 22px rgba(11, 24, 57, 0.28);
}
.res-card-ic svg { width: 21px; height: 21px; }
.res-card-kicker {
  display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-ink); font-weight: 700; font-family: var(--font-display); margin-bottom: 7px;
  padding-right: 40px;
}
.res-card-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; color: var(--navy); line-height: 1.25; }
.res-card-text { display: block; margin-top: 9px; color: var(--grey-700); font-size: 0.92rem; line-height: 1.62; }
.res-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--grey-100);
}
.res-card-n { font-size: 0.78rem; color: var(--grey-700); font-weight: 600; }
.res-card-go {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; color: var(--navy);
}
.res-card-go svg { width: 16px; height: 16px; color: var(--gold); transition: transform 0.25s var(--ease); }
.res-card:hover .res-card-go svg { transform: translateX(4px); }

/* Compact tiles for the secondary resources */
.res-tile {
  display: flex; flex-direction: column;
  background: var(--white); border: var(--card-bd);
  border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
  box-shadow: var(--card-shadow); padding: 24px 22px 20px;
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.res-tile:hover { transform: translateY(-5px); border-color: rgba(199, 154, 46, 0.42); box-shadow: var(--card-shadow-hv), var(--card-ring-gold); }
.res-tile-ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--off-white); border: 1px solid var(--grey-100); color: var(--navy);
  margin-bottom: 16px; transition: 0.3s var(--ease);
}
.res-tile:hover .res-tile-ic { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }
.res-tile-ic svg { width: 20px; height: 20px; }
.res-tile-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--navy); line-height: 1.25; }
.res-tile-kicker { display: block; margin-top: 4px; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--gold-ink); }
.res-tile-text { display: block; margin-top: 11px; font-size: 0.85rem; line-height: 1.6; color: var(--grey-700); }
.res-tile-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--grey-100);
}
.res-tile-foot svg { width: 16px; height: 16px; color: var(--gold); flex: none; transition: transform 0.25s var(--ease); }
.res-tile:hover .res-tile-foot svg { transform: translateX(4px); }

/* ---------- Drawing register: dual-axis filters + discipline groups ---------- */
.dwg-filters {
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 20px 22px; margin: 36px 0 12px;
}
.dwg-filter-row { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.dwg-filter-row + .dwg-filter-row { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--grey-100); }
.dwg-filter-label {
  flex: none; min-width: 92px; padding-top: 7px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; font-family: var(--font-display); color: var(--gold-ink);
}
.chip .chip-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--chip-dot, var(--gold)); display: inline-block; margin-right: 7px; }
.chip .chip-n {
  display: inline-block; margin-left: 7px; padding: 1px 6px; border-radius: 20px;
  background: var(--off-white); color: var(--grey-700); font-size: 0.68rem; font-weight: 700;
}
.chip.is-active .chip-n, .chip[aria-pressed="true"] .chip-n { background: rgba(255, 255, 255, 0.2); color: #fff; }
.dwg-filter-count { margin: 14px 0 0; font-size: 0.82rem; color: var(--grey-700); }
.dwg-group { margin-top: 52px; }
.dwg-group-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 26px; border-bottom: 2px solid var(--grp, var(--gold));
}
.dwg-group-head h3 {
  display: flex; align-items: center; gap: 11px;
  font-size: clamp(1.16rem, 2.2vw, 1.44rem); color: var(--navy); margin: 0;
}
.dwg-group-head h3 i { width: 12px; height: 12px; border-radius: 3px; background: var(--grp, var(--gold)); flex: none; }
.dwg-group-head p { margin: 8px 0 0; color: var(--grey-700); font-size: 0.9rem; line-height: 1.6; max-width: 64ch; }
.dwg-group-n {
  flex: none; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grp, var(--gold-ink));
}
.dwg-body h4 { font-size: 1.1rem; line-height: 1.32; margin: 0 0 5px; color: var(--navy); font-family: var(--font-display); font-weight: 700; }
.dwg-type-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(255, 255, 255, 0.94); color: var(--navy);
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  padding: 4px 9px; border-radius: 6px; border: 1px solid rgba(19, 38, 92, 0.14);
}
.dwg-empty { text-align: center; padding: 60px 0; color: var(--grey-700); }
.link-btn {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--gold-ink); }

/* ---------- FAQs ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(220px, 268px) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-nav { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 900px) { .faq-nav { position: static; } }
.faq-nav-title {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-ink); font-weight: 700; font-family: var(--font-display); margin-bottom: 12px;
}
.faq-nav ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 4px; }
.faq-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy-ink);
  border: 1px solid transparent; transition: 0.22s var(--ease);
}
.faq-nav a:hover { background: var(--white); border-color: rgba(19, 38, 92, 0.12); color: var(--navy); }
.faq-nav-ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--grey-100); color: var(--navy); flex: none; }
.faq-nav-ic svg { width: 15px; height: 15px; }
.faq-nav-n { margin-left: auto; font-size: 0.72rem; font-weight: 700; color: var(--grey-700); }
.faq-expand { width: 100%; padding: 11px 18px; font-size: 0.85rem; }
.faq-group { scroll-margin-top: calc(var(--header-h) + 20px); }
.faq-group + .faq-group { margin-top: 48px; }
.faq-group-title {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--navy);
  padding-bottom: 14px; margin-bottom: 18px; border-bottom: 2px solid var(--gold);
}
.faq-group-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--navy); color: var(--gold-light); flex: none; }
.faq-group-ic svg { width: 18px; height: 18px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  box-shadow: var(--card-shadow); overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] { border-color: rgba(199, 154, 46, 0.45); box-shadow: var(--card-shadow-hv); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { color: var(--gold-ink); }
.faq-item summary i {
  flex: none; position: relative; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--gold); transition: 0.28s var(--ease);
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold-ink);
}
.faq-item summary i::before { width: 10px; height: 1.8px; }
.faq-item summary i::after { width: 1.8px; height: 10px; transition: transform 0.28s var(--ease); }
.faq-item[open] summary i { background: var(--gold); border-color: var(--gold); }
.faq-item[open] summary i::before, .faq-item[open] summary i::after { background: var(--navy-deep); }
.faq-item[open] summary i::after { transform: scaleY(0); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { margin: 0; color: var(--grey-700); font-size: 0.95rem; line-height: 1.75; max-width: 74ch; }

/* ---------- Standards library ---------- */
.std-why .card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.std-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr)); gap: clamp(20px, 2.6vw, 28px); margin-top: 48px; }
@media (max-width: 560px) { .std-groups { grid-template-columns: 1fr; } }
.std-group {
  background: var(--white); border: var(--card-bd); border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
  box-shadow: var(--card-shadow); padding: 24px 24px 12px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.std-group:hover { border-color: rgba(199, 154, 46, 0.4); transform: translateY(-4px); }
.std-group > header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 2px solid var(--std, var(--gold)); }
.std-group > header h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; margin: 0; color: var(--navy); }
.std-group > header h3 i { width: 11px; height: 11px; border-radius: 3px; background: var(--std, var(--gold)); flex: none; }
.std-group > header span {
  flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--off-white); color: var(--navy); font-weight: 800; font-size: 0.82rem; font-family: var(--font-display);
}
.std-list { list-style: none; padding: 0; margin: 0; }
.std-list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--grey-100); }
.std-list li:last-child { border-bottom: 0; }
.std-code {
  flex: none; width: 124px;
  font-family: Consolas, 'DejaVu Sans Mono', Menlo, monospace; font-size: 0.76rem;
  font-weight: 700; color: var(--std, var(--navy)); line-height: 1.45; padding-top: 2px;
}
.std-body { min-width: 0; }
.std-body b { display: block; font-size: 0.9rem; color: var(--navy); font-family: var(--font-display); line-height: 1.35; }
.std-body span { display: block; margin-top: 3px; font-size: 0.83rem; color: var(--grey-700); line-height: 1.55; }
@media (max-width: 480px) { .std-list li { flex-direction: column; gap: 4px; } .std-code { width: auto; } }
.std-note {
  margin: 44px auto 0; max-width: 76ch; text-align: center;
  font-size: 0.9rem; color: var(--grey-700); line-height: 1.7;
  padding: 18px 22px; border-radius: var(--radius);
  background: var(--off-white); border: 1px dashed rgba(19, 38, 92, 0.18);
}

/* ---------- Glossary ---------- */
.gl-toolbar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 18px 20px;
}
.gl-search { position: relative; flex: 1 1 260px; min-width: 220px; }
.gl-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--grey-700); pointer-events: none; }
.gl-search input {
  width: 100%; padding: 12px 14px 12px 42px; border-radius: 10px;
  border: 1px solid var(--grey-100); background: var(--off-white); font: inherit; font-size: 0.92rem; color: var(--navy-ink);
}
.gl-search input:focus { outline: 2px solid var(--gold); outline-offset: 1px; background: var(--white); }
.gl-count { margin: 0; font-size: 0.82rem; color: var(--grey-700); font-weight: 600; }
.gl-alpha { display: flex; flex-wrap: wrap; gap: 4px; margin: 22px 0 34px; }
.gl-alpha a, .gl-alpha span {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.84rem;
}
.gl-alpha a { background: var(--white); border: 1px solid rgba(19, 38, 92, 0.14); color: var(--navy); transition: 0.2s var(--ease); }
.gl-alpha a:hover { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }
.gl-alpha span { color: #b8c0cf; border: 1px solid transparent; }
.gl-block { margin-bottom: 40px; scroll-margin-top: calc(var(--header-h) + 20px); }
.gl-letter {
  font-size: 1.5rem; color: var(--gold-ink); margin: 0 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--grey-100);
}
.gl-list { margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr)); gap: 14px; }
.gl-term {
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 18px 20px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.gl-term:hover { border-color: rgba(199, 154, 46, 0.4); transform: translateY(-3px); }
.gl-term dt {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 7px;
}
.gl-full { font-weight: 500; font-size: 0.8rem; color: var(--grey-700); font-family: var(--font-body); }
.gl-tag {
  margin-left: auto; padding: 2px 9px; border-radius: 20px;
  background: var(--off-white); border: 1px solid var(--grey-100);
  font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--grey-700);
  font-family: var(--font-body);
}
.gl-term dd { margin: 0; font-size: 0.88rem; line-height: 1.65; color: var(--grey-700); }
.gl-empty { text-align: center; padding: 60px 0; color: var(--grey-700); }

/* ---------- Careers ---------- */
.car-intro {
  display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap;
  background: var(--white); border: var(--card-bd); border-left: 4px solid var(--gold);
  border-radius: var(--radius); box-shadow: var(--card-shadow); padding: 24px 28px;
  max-width: 940px; margin: 0 auto;
}
.car-badge {
  flex: none; padding: 6px 13px; border-radius: 20px; background: var(--navy); color: var(--gold-light);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; font-family: var(--font-display);
}
.car-intro p { margin: 0; flex: 1 1 420px; color: var(--grey-700); font-size: 0.97rem; line-height: 1.72; }
.car-values { margin-top: 40px; }
.car-values .card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.car-roles { display: grid; gap: 22px; margin-top: 48px; }
.car-role {
  background: var(--white); border: var(--card-bd);
  border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
  box-shadow: var(--card-shadow); padding: 26px clamp(22px, 3vw, 32px) 28px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.car-role:hover { border-color: rgba(199, 154, 46, 0.4); box-shadow: var(--card-shadow-hv), var(--card-ring-gold); }
.car-role-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--grey-100); }
.car-role-head h3 { font-size: clamp(1.14rem, 2.2vw, 1.36rem); margin: 0 0 8px; color: var(--navy); }
.car-role-sum { margin: 0; color: var(--grey-700); font-size: 0.94rem; line-height: 1.65; max-width: 62ch; }
.car-role-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.car-role-tags span {
  padding: 5px 12px; border-radius: 20px; background: var(--off-white);
  border: 1px solid var(--grey-100); font-size: 0.75rem; font-weight: 600; color: var(--navy);
}
.car-role-cols { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 48px); margin-top: 22px; }
@media (max-width: 780px) { .car-role-cols { grid-template-columns: 1fr; gap: 26px; } }
.car-role-lbl {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; font-family: var(--font-display); color: var(--gold-ink); margin-bottom: 12px;
}
.car-role-cols .check-list li { font-size: 0.9rem; color: var(--grey-700); }
.car-plus { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.car-plus li {
  padding: 6px 13px; border-radius: 8px; background: var(--off-white);
  border: 1px dashed rgba(19, 38, 92, 0.2); font-size: 0.82rem; color: var(--grey-700);
}
.car-apply { padding: 11px 22px; font-size: 0.85rem; }

/* ---------- Downloads ---------- */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr)); gap: clamp(20px, 2.6vw, 26px); }
.dl-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: var(--card-bd);
  border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
  box-shadow: var(--card-shadow); padding: 24px 26px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dl-card:hover { transform: translateY(-5px); border-color: rgba(199, 154, 46, 0.45); box-shadow: var(--card-shadow-hv), var(--card-ring-gold); }
.dl-ic {
  flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold-light);
}
.dl-ic svg { width: 23px; height: 23px; }
.dl-body { min-width: 0; display: flex; flex-direction: column; flex: 1; }
.dl-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.dl-text { margin-top: 8px; font-size: 0.9rem; line-height: 1.62; color: var(--grey-700); }
.dl-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--grey-100); }
.dl-fmt { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--gold-ink); }
.dl-go { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.dl-go svg { width: 16px; height: 16px; color: var(--gold); transition: transform 0.25s var(--ease); }
.dl-card:hover .dl-go svg { transform: translateY(2px); }
.dl-request {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  margin-top: 48px; padding: 30px clamp(24px, 3.4vw, 40px);
  background: var(--navy); color: #fff; border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
}
.dl-request h2 { color: #fff; font-size: clamp(1.24rem, 2.6vw, 1.6rem); margin: 0 0 8px; }
.dl-request p { margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 0.94rem; line-height: 1.68; max-width: 68ch; }

/* =====================================================================
   DRAWINGS & DELIVERABLES  (/resources/drawings)
   "Our drawings" — the deliverable itself, kept visually distinct from
   the sample register at /resources/sample-drawings.
   ===================================================================== */

/* ---------- Our drawings vs sample drawings ---------- */
.dwg-distinction { background: var(--off-white); border-bottom: 1px solid var(--grey-100); padding: 34px 0; }
.dwg-dist-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 26px); }
@media (max-width: 760px) { .dwg-dist-grid { grid-template-columns: 1fr; } }
.dwg-dist {
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  padding: 22px 24px 24px; box-shadow: var(--card-shadow);
}
.dwg-dist.is-active { border-color: rgba(199, 154, 46, 0.55); border-left: 4px solid var(--gold); }
.dwg-dist-tag {
  display: inline-block; margin-bottom: 10px; padding: 4px 11px; border-radius: 20px;
  font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700;
  font-family: var(--font-display); background: var(--off-white); color: var(--grey-700);
  border: 1px solid var(--grey-100);
}
.dwg-dist.is-active .dwg-dist-tag { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.dwg-dist h2 { font-size: clamp(1.06rem, 2vw, 1.24rem); margin: 0 0 8px; color: var(--navy); }
.dwg-dist p { margin: 0; font-size: 0.9rem; line-height: 1.65; color: var(--grey-700); }
.dwg-dist .card-link { margin-top: 12px; display: inline-block; }

/* ---------- Issue stages ---------- */
.stage-track { list-style: none; padding: 0; margin: 48px 0 0; display: grid; gap: 16px; }
.stage {
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: clamp(18px, 2.6vw, 30px);
  align-items: start; background: var(--white); border: var(--card-bd);
  border-left: 4px solid var(--stage, var(--gold));
  border-radius: var(--radius); box-shadow: var(--card-shadow);
  padding: 22px clamp(20px, 3vw, 30px) 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stage:hover { transform: translateX(4px); box-shadow: var(--card-shadow-hv); }
@media (max-width: 620px) { .stage { grid-template-columns: 1fr; gap: 12px; } }
.stage-rev {
  display: grid; place-items: center; height: 52px; border-radius: 12px;
  background: var(--stage, var(--gold)); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: 0.04em;
}
@media (max-width: 620px) { .stage-rev { width: 84px; } }
.stage-body h3 { font-size: 1.08rem; margin: 0 0 7px; color: var(--navy); }
.stage-body > p { margin: 0 0 16px; font-size: 0.92rem; line-height: 1.68; color: var(--grey-700); max-width: 78ch; }
.stage-rules { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; }
@media (max-width: 700px) { .stage-rules { grid-template-columns: 1fr; } }
.stage-rules > div { padding: 12px 14px; border-radius: 10px; background: var(--off-white); border: 1px solid var(--grey-100); }
.stage-rules dt {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  font-family: var(--font-display); margin-bottom: 5px;
}
.stage-may dt { color: #15803d; }
.stage-not dt { color: #b91c1c; }
.stage-rules dd { margin: 0; font-size: 0.85rem; line-height: 1.55; color: var(--grey-700); }

/* ---------- Numbering anatomy (sits on a dark band) ---------- */
.num-anatomy { max-width: 900px; margin: 44px auto 0; }
.num-example {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px;
  font-family: Consolas, 'DejaVu Sans Mono', Menlo, monospace;
  font-size: clamp(1.1rem, 3.2vw, 1.9rem); font-weight: 700; margin-bottom: 34px;
}
.num-part {
  padding: 8px 16px; border-radius: 10px; color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(199, 154, 46, 0.42);
}
.num-dash { color: rgba(255, 255, 255, 0.45); }
.num-legend { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 30px; margin: 0; }
@media (max-width: 700px) { .num-legend { grid-template-columns: 1fr; } }
.num-legend dt {
  display: flex; align-items: center; gap: 10px; margin-bottom: 5px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; color: #fff;
}
.num-chip {
  font-family: Consolas, 'DejaVu Sans Mono', Menlo, monospace; font-size: 0.72rem;
  padding: 2px 8px; border-radius: 6px; background: rgba(199, 154, 46, 0.2);
  border: 1px solid rgba(199, 154, 46, 0.45); color: var(--gold-light);
}
.num-legend dd { margin: 0; font-size: 0.87rem; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }
.num-file {
  margin: 30px 0 0; padding: 16px 20px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05); border: 1px dashed rgba(255, 255, 255, 0.22);
  font-size: 0.88rem; line-height: 1.62; color: rgba(255, 255, 255, 0.78);
}
.num-file b {
  display: block; margin-bottom: 5px; color: var(--gold-light);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-display);
}

/* ---------- Drawing register by discipline ---------- */
.reg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: clamp(20px, 2.6vw, 28px); margin-top: 48px; }
.reg-card {
  display: flex; flex-direction: column;
  background: var(--white); border: var(--card-bd);
  border-radius: var(--radius) var(--arc) var(--radius) var(--radius);
  box-shadow: var(--card-shadow); padding: 24px 24px 22px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.reg-card:hover { transform: translateY(-5px); border-color: rgba(199, 154, 46, 0.42); box-shadow: var(--card-shadow-hv), var(--card-ring-gold); }
.reg-card > header { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 2px solid var(--reg, var(--gold)); }
.reg-code {
  flex: none; min-width: 54px; height: 40px; padding: 0 10px; border-radius: 10px;
  display: grid; place-items: center; background: var(--reg, var(--gold)); color: #fff;
  font-family: Consolas, 'DejaVu Sans Mono', Menlo, monospace; font-weight: 700; font-size: 0.88rem;
}
.reg-card h3 { font-size: 1.02rem; margin: 0; color: var(--navy); line-height: 1.3; }
.reg-range {
  margin: 4px 0 0; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--grey-700); font-family: Consolas, 'DejaVu Sans Mono', Menlo, monospace;
}
.reg-card ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; }
.reg-card li { position: relative; padding-left: 18px; font-size: 0.87rem; line-height: 1.55; color: var(--grey-700); }
.reg-card li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--reg, var(--gold)); opacity: 0.75;
}
.reg-card .card-link { margin-top: auto; }

/* ---------- Package contents ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: clamp(18px, 2.4vw, 24px); margin-top: 48px; }
.pkg-card {
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 24px 22px 22px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pkg-card:hover { transform: translateY(-5px); border-color: rgba(199, 154, 46, 0.42); }
.pkg-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold-light);
  margin-bottom: 15px;
}
.pkg-ic svg { width: 21px; height: 21px; }
.pkg-card h3 { font-size: 1.02rem; margin: 0 0 8px; color: var(--navy); }
.pkg-card p { margin: 0; font-size: 0.87rem; line-height: 1.62; color: var(--grey-700); }

/* ---------- Formats & handover ---------- */
.fmt-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 68px); align-items: center; }
@media (max-width: 860px) { .fmt-layout { grid-template-columns: 1fr; gap: 34px; } }
.fmt-intro .kicker { margin-bottom: 12px; }
.fmt-intro h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 16px; color: var(--navy); }
.fmt-intro p { color: var(--grey-700); font-size: 0.97rem; line-height: 1.72; margin-bottom: 16px; }
.fmt-intro .btn { margin-top: 10px; }
.fmt-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.fmt-list li {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: var(--card-bd); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 16px 20px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.fmt-list li:hover { border-color: rgba(199, 154, 46, 0.42); transform: translateX(4px); }
.fmt-badge {
  flex: none; min-width: 82px; padding: 6px 10px; border-radius: 8px; text-align: center;
  background: var(--navy); color: var(--gold-light);
  font-family: Consolas, 'DejaVu Sans Mono', Menlo, monospace; font-weight: 700; font-size: 0.78rem;
}
.fmt-list li > span:last-child { font-size: 0.88rem; line-height: 1.6; color: var(--grey-700); }
