/* ============================================================
   BNH Solutions - Boardroom Minute-Book Theme
   DARK palette: boardroom-navy #101822 / minute-paper #EEF1F4
   Accent: brass-gavel #C29B3C, panels #1C2531, deep #0A1017
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #EEF1F4;
  background-color: #101822;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============ GAVEL-RAIL NAVIGATION ============ */
.gavelnav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: #1C2531;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.gavelnav .minutestrip {
  height: 6px;
  width: 100%;
  background: linear-gradient(180deg, #C29B3C 0%, #C29B3C 35%, #9a7c2c 35%, #9a7c2c 100%);
  border-bottom: 2px solid #B0523F;
  position: relative;
}

.gavelnav .minutestrip::before,
.gavelnav .minutestrip::after {
  content: '';
  position: absolute;
  top: -3px;
  height: 4px;
  width: 60px;
  background-color: #B0523F;
}
.gavelnav .minutestrip::before { left: 8%; }
.gavelnav .minutestrip::after { right: 8%; }

.gavelnav .navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 24px;
  gap: 24px;
}

.gavelnav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gavelnav .gavelglyph {
  letter-spacing: 0;
}

/* Pure-CSS mini gavel brand mark (head + handle) */
.gavelnav .brandgavel,
.reportshell .gavelmark,
.reportshell .gavelicon {
  position: relative;
  display: inline-block;
  color: #C29B3C;
}
.gavelnav .brandgavel {
  width: 20px;
  height: 22px;
}
.gavelnav .brandgavel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 8px;
  background-color: #C29B3C;
  border-radius: 2px;
}
.gavelnav .brandgavel::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 5px;
  height: 14px;
  background-color: #C29B3C;
  border-radius: 2px;
}

/* Footer / divider gavels share the same head-and-handle drawing */
.reportshell .gavelmark,
.reportshell .gavelicon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}
.reportshell .gavelmark::after,
.reportshell .gavelmark::before,
.reportshell .gavelicon::after,
.reportshell .gavelicon::before {
  content: '';
  position: absolute;
  background-color: #C29B3C;
}
.reportshell .gavelmark::before,
.reportshell .gavelicon::before {
  top: 1px;
  left: 1px;
  width: 24px;
  height: 9px;
  border-radius: 3px;
}
.reportshell .gavelmark::after,
.reportshell .gavelicon::after {
  left: 10px;
  top: 10px;
  width: 6px;
  height: 16px;
  border-radius: 2px;
}

.gavelnav .brandname {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #EEF1F4;
  text-transform: uppercase;
}

.gavelnav .navlinks {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gavelnav .navlinks li {
  display: flex;
  align-items: center;
}

.gavelnav .navlinks a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C97A3;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.2s ease;
}

.gavelnav .navlinks a:hover,
.gavelnav .navlinks a.active {
  color: #C29B3C;
}

.gavelnav .navlinks a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #C29B3C;
  transition: width 0.25s ease;
}

.gavelnav .navlinks a:hover::after,
.gavelnav .navlinks a.active::after {
  width: 100%;
}

.gavelnav .navlinks .stud {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #C29B3C;
  display: inline-block;
  transform: translateX(-10px);
}

/* Mobile nav toggle */
.gavelnav .navtoggle {
  display: none;
  background: none;
  border: 1px solid #26313E;
  color: #EEF1F4;
  font-size: 24px;
  padding: 4px 12px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 860px) {
  .gavelnav .navtoggle {
    display: block;
  }
  .gavelnav .navlinks {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    padding: 8px 24px 20px;
  }
  .gavelnav .navlinks.open {
    display: flex;
  }
  .gavelnav .navwrap {
    flex-wrap: wrap;
  }
  .gavelnav.navlinkswrap {
    flex-basis: 100%;
  }
}

/* ============ BOARD-TABLE HERO ============ */
.boardtablehero {
  background-color: #101822;
  width: 100%;
}

.boardtablehero .heroinner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 24px 70px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.boardtablehero .herotext {
  padding-right: 12px;
}

.boardtablehero .eyebrow {
  display: inline-block;
  background-color: #C29B3C;
  color: #101822;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.boardtablehero h1 {
  font-size: 48px;
  line-height: 1.12;
  color: #EEF1F4;
  font-weight: 700;
  margin-bottom: 22px;
}

.boardtablehero h1 .decided {
  color: #C29B3C;
}

.boardtablehero .subcopy {
  font-size: 17px;
  line-height: 1.7;
  color: #8C97A3;
  margin-bottom: 32px;
  max-width: 46ch;
}

.boardtablehero .cta_row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: #C29B3C;
  color: #101822;
}

.btn-primary:hover {
  background-color: #d3ab4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194,155,60,0.3);
}

.btn-outline {
  background-color: transparent;
  color: #EEF1F4;
  border: 1px solid #EEF1F4;
}

.btn-outline:hover {
  background-color: #26313E;
  transform: translateY(-2px);
}

/* ====== CSS BOARDROOM SCENE ====== */
.boardscene {
  position: relative;
  height: 460px;
  background-color: #0A1017;
  border: 1px solid #26313E;
  border-radius: 6px;
  overflow: hidden;
}

.boardscene .sceneinner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Wall clock */
.sceneclock {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #F8F6EF;
  border: 5px solid #C29B3C;
  box-shadow: inset 0 0 0 2px #26313E;
}

.sceneclock .quarter {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: none;
}

.sceneclock .quarter.tl { top: 0; left: 0; }
.sceneclock .quarter.tr { top: 0; left: 50%; background-color: #ddd8c8; }
.sceneclock .quarter.bl { top: 50%; left: 0; background-color: #ddd8c8; }
.sceneclock .quarter.br { top: 50%; left: 50%; }

/* minute hand upright across half the face */
.sceneclock .quarter.tl::after,
.sceneclock .quarter.tr::after {
  content: '';
  position: absolute;
  top: 52%;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: #101822;
  border-radius: 2px;
}

.sceneclock .minhand,
.sceneclock .hourhand,
.sceneclock .hands { display: none; }

.sceneclock .clockcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #C29B3C;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

/* Chair backs behind table */
.scenechairs {
  position: absolute;
  bottom: 132px;
  left: 10%;
  right: 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.scenechairs .chair {
  width: 58px;
  height: 62px;
  background-color: #1C2531;
  border-radius: 30px 30px 6px 6px;
  border-top: 4px solid #C29B3C;
}

.scenechairs .chair:nth-child(2),
.scenechairs .chair:nth-child(4) {
  margin-bottom: 14px;
}

/* Board table in perspective */
.scenetable {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 120px;
  background: linear-gradient(180deg, #4A3A2A 0%, #3a2d20 100%);
  clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
  border-top: 3px solid #C29B3C;
  z-index: 3;
}

.scenetable::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: #9a7c2c;
}

/* Open minute book at table center */
.scenebook {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-58%);
  width: 210px;
  height: 118px;
  z-index: 4;
  display: flex;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
}

.scenebook .page {
  width: 50%;
  height: 100%;
  background-color: #F8F6EF;
  padding: 10px 8px;
  position: relative;
}

.scenebook .page.left {
  border-radius: 4px 0 0 4px;
  border-right: 3px solid #C29B3C;
  border-left: 1px solid #26313E;
  transform: perspective(300px) rotateY(4deg);
}

.scenebook .page.right {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #26313E;
  border-left: 3px solid #C29B3C;
  transform: perspective(300px) rotateY(-4deg);
}

.scenebook .rule {
  display: block;
  height: 2px;
  background-color: #8C97A3;
  margin-bottom: 7px;
}

.scenebook .bookback {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -8px;
  height: 12px;
  background-color: #4A3A2A;
  border-radius: 0 0 6px 6px;
}

.scenebook .stamp {
  position: absolute;
  right: 10px;
  top: 40px;
  border: 2px solid #B0523F;
  color: #B0523F;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 6px;
  transform: rotate(-8deg);
  text-transform: uppercase;
  border-radius: 3px;
}

/* Foldout agenda */
.sceneagenda {
  position: absolute;
  bottom: 150px;
  right: 8%;
  width: 130px;
  background-color: #F8F6EF;
  border-radius: 3px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.35);
  border: 1px solid #26313E;
  z-index: 4;
  transform: rotate(2deg);
  padding: 8px 10px;
}

.sceneagenda .agendatitle {
  font-size: 9px;
  font-weight: 700;
  color: #B0523F;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid #C29B3C;
  padding-bottom: 3px;
  margin-bottom: 6px;
}

.sceneagenda .agendaitem {
  font-size: 9px;
  color: #1A2430;
  margin-bottom: 4px;
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.sceneagenda .tick {
  width: 7px;
  height: 7px;
  background-color: #C29B3C;
  border-radius: 1px;
  display: inline-block;
  flex: 0 0 auto;
}

/* Gavel on a stand */
.scenegavel {
  position: absolute;
  bottom: 118px;
  left: 6%;
  z-index: 4;
  text-align: center;
  line-height: 1;
}

.scenegavel .gavelbody {
  display: block;
  width: 52px;
  height: 13px;
  background-color: #4A3A2A;
  border-radius: 3px;
  margin: 0 auto 2px;
  position: relative;
}

.scenegavel .gavelbody::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0;
  width: 8px;
  height: 13px;
  background-color: #C29B3C;
  border-radius: 3px 0 0 3px;
}

.scenegavel .gavelhandle {
  display: block;
  width: 0;
  height: 38px;
  border-left: 3px solid #C29B3C;
  margin: 0 auto;
}

.scenegavel .gavelstand {
  display: block;
  width: 66px;
  height: 5px;
  background-color: #4A3A2A;
  margin: 0 auto;
  border-radius: 2px;
}

/* Reports stack */
.scenereports {
  position: absolute;
  bottom: 100px;
  left: 16%;
  z-index: 4;
  width: 90px;
}

.scenereports .report {
  height: 34px;
  background-color: #1C2531;
  border-radius: 2px;
  position: relative;
  margin-bottom: 3px;
  border-left: 4px solid #4A3A2A;
}

.scenereports .report:nth-child(1) { transform: rotate(-3deg) translateX(4px); }
.scenereports .report:nth-child(2) { transform: rotate(0deg); }
.scenereports .report:nth-child(3) { transform: rotate(2deg) translateX(-6px); background-color:#222e3c; }

.scenereports .report .ribbon {
  position: absolute;
  right: -2px;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #B0523F;
}

.scenereports .report:nth-child(2) .ribbon { background-color: #C29B3C; }

/* Teacup */
.scenetea {
  position: absolute;
  bottom: 132px;
  right: 30%;
  z-index: 4;
}

.scenetea .cup {
  width: 34px;
  height: 26px;
  background-color: #F8F6EF;
  border-radius: 4px 4px 10px 10px;
  border: 1px solid #26313E;
  position: relative;
}

.scenetea .cup .handle {
  position: absolute;
  right: -9px;
  top: 5px;
  width: 9px;
  height: 12px;
  border: 2px solid #C29B3C;
  border-left: none;
  border-radius: 0 6px 6px 0;
}

.scenetea .saucer {
  width: 46px;
  height: 8px;
  background-color: #8C97A3;
  border-radius: 50%;
  margin: 4px auto 0;
  border: 1px solid #26313E;
}

.scenetea .steam {
  position: absolute;
  top: -12px;
  left: 12px;
  width: 5px;
  height: 14px;
  border-left: 1px solid #8C97A3;
  border-radius: 50%;
  transform: rotate(15deg);
}

@media (max-width: 1000px) {
  .boardtablehero .heroinner {
    grid-template-columns: 1fr;
  }
  .boardtablehero h1 { font-size: 38px; }
}

@media (max-width: 600px) {
  .boardscene { height: 340px; }
  .boardtablehero .heroinner { padding: 44px 18px 50px; }
}

/* ============ RESOLUTION ROWS SECTION ============ */
.resolutions {
  background-color: #101822;
  padding: 70px 0;
}

.resolutions .reswrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.sectionhead {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.sectionhead .headline {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  color: #C29B3C;
}

.sectionhead h2 {
  font-size: 32px;
  color: #EEF1F4;
  font-weight: 700;
}

.sectionhead h2 .accentbar {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #B0523F;
  margin-right: 12px;
}

.resolutionrows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.resolutionrow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background-color: #F8F6EF;
  border: 1px solid #26313E;
  border-radius: 5px;
  padding: 26px 28px;
  color: #1A2430;
}

.resolutionrow .itemnum {
  text-align: center;
  min-width: 58px;
}

.resolutionrow .itemnum .chip {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #C29B3C;
  color: #101822;
  font-weight: 700;
  font-size: 15px;
  line-height: 48px;
  text-align: center;
  border-radius: 3px;
  position: relative;
}

.resolutionrow .itemnum .chip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  background-color: #B0523F;
  border-radius: 2px;
}

.resolutionrow .rowbody h3 {
  font-size: 21px;
  color: #1A2430;
  margin-bottom: 8px;
  font-weight: 700;
}

.resolutionrow .rowbody p {
  color: #56606b;
  font-size: 15px;
  line-height: 1.7;
}

.resolutionrow .carried {
  text-align: center;
}

.resolutionrow .stamp {
  display: inline-block;
  border: 2px solid #B0523F;
  color: #B0523F;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transform: rotate(6deg);
}

.resolutionrow .date {
  display: block;
  font-size: 11px;
  color: #8C97A3;
  margin-top: 5px;
  letter-spacing: 0.1em;
  transform: rotate(2deg);
}

.resolutionrow:nth-child(even) .stamp { transform: rotate(-8deg); }
.resolutionrow:nth-child(odd) .itemnum .chip::before { content: none; }

@media (max-width: 840px) {
  .resolutionrow {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px;
  }
  .resolutionrow .carried { text-align: left; }
}

@media (max-width: 560px) {
  .resolutionrow {
    grid-template-columns: 1fr;
  }
}

/* ============ MAJORITY METRIC BAND ============ */
.metricband {
  background-color: #0A1017;
  width: 100%;
  padding: 54px 0;
}

.metricband .metricwrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metricband .metric {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.metricband .metric + .metric {
  border-left: 1px solid #26313E;
}

.metricband .metric .number {
  font-size: 46px;
  font-weight: 700;
  color: #C29B3C;
  line-height: 1.1;
  margin-bottom: 6px;
}

.metricband .metric .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C97A3;
}

@media (max-width: 800px) {
  .metricband .metricwrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .metricband .metric:nth-child(3) { border-left: none; }
  .metricband .metric:nth-child(2),
  .metricband .metric:nth-child(4) {
    border-left: 1px solid #26313E;
  }
}

@media (max-width: 480px) {
  .metricband .metricwrap { grid-template-columns: 1fr; }
  .metricband .metric,
  .metricband .metric:nth-child(2),
  .metricband .metric:nth-child(3),
  .metricband .metric:nth-child(4) {
    border-left: none;
    border-top: 1px solid #26313E;
  }
}

/* ============ STATEMENT BAND ============ */
.statementband {
  background-color: #1C2531;
  width: 100%;
  padding: 66px 0;
}

.statementband .statwrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.statementband .quotebar {
  border-left: 4px solid #C29B3C;
  padding-left: 30px;
}

.statementband .manifesto {
  font-size: 23px;
  line-height: 1.6;
  color: #EEF1F4;
  font-weight: 500;
  margin-bottom: 18px;
}

.statementband .attribution {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C97A3;
  font-weight: 600;
}

/* ============ ABOUT STYLE SECTION WRAP ============ */
/* used for interior narrative content on the homepage */
.interiorband {
  background-color: #101822;
  padding: 70px 0;
}

.interiorband .interiorwrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.interiorband .contentgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.interiorband .col h3 {
  font-size: 21px;
  color: #C29B3C;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 8px;
}

.interiorband .col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #B0523F;
}

.interiorband .col p {
  color: #B9C1C9;
  line-height: 1.75;
  margin-bottom: 14px;
}

.interiorband .col li {
  color: #B9C1C9;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  list-style: none;
}

.interiorband .col li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: #C29B3C;
  font-weight: 700;
}

.interiorband .bandrow2 {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid #26313E;
}

.interiorband .bandrow2 .col h3::after {
  background-color: #C29B3C;
}

@media (max-width: 800px) {
  .interiorband .contentgrid { grid-template-columns: 1fr; }
}

/* ============ CTA BAND ============ */
.ctaband {
  background-color: #101822;
  width: 100%;
  padding: 70px 0 80px;
}

.ctaband .ctawrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  background-color: #0A1017;
  border: 1px solid #26313E;
  border-radius: 8px;
  padding: 56px 24px;
}

.ctaband h2 {
  font-size: 32px;
  color: #C29B3C;
  margin-bottom: 14px;
  font-weight: 700;
}

.ctaband .ctasub {
  color: #B9C1C9;
  font-size: 17px;
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* ============ REPORT-SHELF FOOTER ============ */
.reportshell {
  background-color: #070C12;
  width: 100%;
  color: #EEF1F4;
  position: relative;
  z-index: 1;
}

.reportshell .bindingstrip {
  height: 22px;
  background: repeating-linear-gradient(
    90deg,
    rgba(28,37,49,0.9) 0 18px,
    rgba(176,82,63,0.9) 18px 20px,
    rgba(194,155,60,0.9) 34px 36px,
    rgba(28,37,49,0.9) 36px 56px
  );
}

.reportshell .core {
  max-width: 1220px;
  margin: 0 auto;
  padding: 54px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.reportshell .brandrow {
  margin-bottom: 22px;
}

.reportshell .wordmark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EEF1F4;
}

.reportshell .gavelmark {
  font-size: 18px;
  color: #C29B3C;
  margin-right: 10px;
}

.reportshell .footerlinks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.reportshell .footerlinks a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #B9C1C9;
  transition: color 0.2s ease;
}

.reportshell .footerlinks a:hover {
  color: #C29B3C;
}

.reportshell .footerlinks li + li::before {
  content: '\00b7';
  margin-right: 20px;
  color: #C29B3C;
}

/* gavel divider */
.reportshell .gaveldivider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 34px 0 22px;
}

.reportshell .laurel {
  display: block;
  width: 66px;
  height: 18px;
  position: relative;
}

/* leaf sprig via stacked diamond blades */
.reportshell .laurel::before,
.reportshell .laurel::after {
  content: '';
  position: absolute;
  top: 3px;
  width: 26px;
  height: 12px;
  background-color: #C29B3C;
  border-radius: 60% 0 60% 0;
}
.reportshell .laurel.leaf-left::before { left: 0; top: 2px; transform: rotate(-18deg); }
.reportshell .laurel.leaf-left::after  { left: 12px; top: 6px; transform: rotate(18deg) scale(0.8); }
.reportshell .laurel.leaf-right::before { right: 0; transform: rotate(18deg) scaleX(-1) ; top: 2px;}
.reportshell .laurel.leaf-right::after { right: 12px; top: 6px; transform: rotate(-18deg) scaleX(-1) scale(0.8); }

.reportshell .gavelicon {
  font-size: 18px;
  color: #C29B3C;
}

.reportshell .legalline {
  font-size: 13px;
  color: #8C97A3;
  line-height: 1.8;
  letter-spacing: 0.02em;
  max-width: 90ch;
  margin: 0 auto;
}

.reportshell .footerlinks .gapmob { display: none; }

@media (max-width: 640px) {
  .reportshell .footerlinks { gap: 10px 16px; }
  .reportshell .footerlinks li + li::before { margin-right: 0; content: none; }
}

/* ============ SCROLL REVEAL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}
