/* ------------------------------------------------------------------ *
 * Platinum Tower — brochure base stylesheet.
 *
 * Tokens, type and furniture are lifted from the live site's globals.css
 * (pure black base, silver type, Orbitron display, DIN Pro body) so the PDF
 * and www.platinumtowergambia.com read as one piece. Page geometry and the
 * few layout decisions that depend on it live in landscape.css / a4.css.
 * ------------------------------------------------------------------ */

@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-300.woff2") format("woff2");
  font-weight: 300;
  font-display: block;
}
@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-400.woff2") format("woff2");
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-500.woff2") format("woff2");
  font-weight: 500;
  font-display: block;
}
@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/DINPro-700.woff2") format("woff2");
  font-weight: 700;
  font-display: block;
}
@font-face {
  font-family: "Orbitron";
  src: url("assets/fonts/Orbitron-700.ttf") format("truetype");
  font-weight: 700;
  font-display: block;
}

:root {
  --bg: #000000;
  --bg-elev: #0d0d0f;
  --bg-elev-2: #16161a;
  --silver: #eaeaec;
  --silver-dim: #9b9ba2;
  --accent: #cfd2d8;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --exp: "Orbitron", system-ui, sans-serif;
  --sans: "DIN Pro", system-ui, sans-serif;
}

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

html,
body {
  background: #202024;
  color: var(--silver);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ------------------------------------------------------------------ page */

.page {
  position: relative;
  width: var(--pw);
  height: var(--ph);
  overflow: hidden;
  background: var(--bg);
  break-after: page;
  page-break-after: always;
  /* keep the black base and the photography when Chrome prints */
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.page:last-child {
  break-after: auto;
  page-break-after: auto;
}

/* on-screen preview only: the printed page has no gap or shadow */
@media screen {
  #book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
  }
  .page {
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  }
}

.pad-box {
  position: relative;
  height: 100%;
  padding: var(--pad) var(--pad) calc(var(--pad) + var(--runner-h));
  display: flex;
  flex-direction: column;
}

.runner {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: calc(var(--pad) * 0.62);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-runner);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-weight: 400;
}
.folio {
  font-family: var(--exp);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
}

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

.display {
  font-family: var(--exp);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.005em;
}

/* The second voice inside a headline.
 *
 * This started as a switch to DIN Pro Light lowercase — the brandbook-legal
 * answer to the serif italic in the reference layouts. It read as a foreign
 * font, because the site's headlines are Orbitron and only Orbitron: DIN Pro
 * never appears at display size anywhere on platinumtowergambia.com. So the
 * face stays put and the second voice is carried by colour alone, on the same
 * silver/dim pair the site already uses for primary and secondary type. */
.display .soft {
  color: var(--silver-dim);
}
.h-lg {
  font-size: var(--fs-h-lg);
}
.h-md {
  font-size: var(--fs-h-md);
}
.h-sm {
  font-size: var(--fs-h-sm);
}
.h-xs {
  font-size: var(--fs-h-xs);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent);
  flex: none;
}

.lede {
  font-size: var(--fs-lede);
  font-weight: 300;
  line-height: 1.6;
  color: var(--silver);
  max-width: 52ch;
}
.body {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.65;
  color: var(--silver-dim);
  max-width: 52ch;
}
.accent {
  font-size: var(--fs-body);
  color: var(--accent);
  font-weight: 400;
  max-width: 46ch;
}
.cap {
  font-size: var(--fs-cap);
  color: var(--silver-dim);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.ghost {
  position: absolute;
  top: calc(var(--pad) * 0.1);
  right: var(--pad);
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-ghost);
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

/* ------------------------------------------------------------------ cover */

.cover .bleed,
.enquiry .bleed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.3) 34%,
    rgba(0, 0, 0, 0.62) 72%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
/* The closing page keeps its render legible under the copy instead of
   flattening it to near-black. */
.scrim-hard {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.52) 38%,
    rgba(0, 0, 0, 0.82) 72%,
    rgba(0, 0, 0, 0.94) 100%
  );
}
.cover-inner {
  position: absolute;
  inset: 0;
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cover .mark {
  width: var(--mark-w);
  height: auto;
}
.cover-title h1 {
  font-size: var(--fs-cover);
  margin-top: 0.5em;
}
.cover-title .sub {
  margin-top: 1.1rem;
  font-size: var(--fs-lede);
  font-weight: 300;
  color: var(--silver);
  max-width: 44ch;
}
.cover-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-runner);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --------------------------------------------------------------- contents */

/* The seven entries share out whatever height is left, so the list fills the
   page on A4 as well as on the tighter 16:9 sheet. */
.toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  margin-top: var(--gap);
}
.toc li {
  display: grid;
  grid-template-columns: var(--toc-n) 1fr;
  gap: 0 1.4rem;
  align-items: baseline;
  align-content: center;
  flex: 1;
  padding: var(--toc-pad) 0;
  border-top: 1px solid var(--line-soft);
}
.toc li:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.toc-n {
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-toc-n);
  color: var(--accent);
}
.toc-t {
  font-size: var(--fs-toc-t);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.toc-s {
  grid-column: 2;
  font-size: var(--fs-cap);
  color: var(--silver-dim);
}
.contents .lede {
  margin-top: 1rem;
}

/* ------------------------------------------------------------------ split */

.split {
  display: flex;
}
.col-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--stack);
  padding: var(--pad) var(--pad) calc(var(--pad) + var(--runner-h));
}
.col-copy .display {
  margin-top: 0.1rem;
}
/* Editorial pages centre their column against the full-height photograph; the
   unit sheet is a top-down spec sheet and stays anchored to the top. */
.split:not(.unit) .col-copy {
  justify-content: center;
}
.col-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
}
.col-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Top-right, so it never collides with the chips along the bottom edge, and on
   its own dark pill so it stays readable over a bright sky. */
.col-media .cap {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 3px 10px 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-cap);
}
/* --------------------------------------------------------- chips & badges */

/* Label pills over a render — the one device worth lifting wholesale from the
   reference layouts. Anchored to the bottom-left of the frame rather than to
   anything in the photograph, because 16:9 and A4 crop every image
   differently and a chip pinned to a feature drifts off it in one of them. */
.chips {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip {
  background: rgba(234, 234, 236, 0.95);
  color: #08080a;
  border-radius: 999px;
  padding: 5px 12px 6px;
  font-size: var(--fs-chip);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}
/* On the black page there is no photograph to sit on, so the pills invert. */
.chips.static {
  position: static;
  padding: 0;
}
.chips.static .chip {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: none;
}

/* One hard figure, set large enough to be read across a room. */
.badge {
  position: absolute;
  top: 14px;
  left: 16px;
  background: rgba(234, 234, 236, 0.96);
  color: #08080a;
  border-radius: 999px;
  padding: 6px 15px 7px;
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-badge);
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

/* ----------------------------------------------------------------- glance */

/* Equal columns, so the labels line up under numbers of different widths. */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.stat-n {
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-stat);
  line-height: 1;
  color: var(--silver);
}
.stat-l {
  margin-top: 0.4rem;
  font-size: var(--fs-cap);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.specs > div {
  display: grid;
  grid-template-columns: var(--spec-k) 1fr;
  gap: 1.4rem;
  padding: var(--spec-pad) 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.specs > div:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.specs dt {
  font-size: var(--fs-cap);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.specs dd {
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--silver);
}

/* --------------------------------------------------------------- location */

.dist {
  list-style: none;
}
.dist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: var(--spec-pad) 0;
  border-top: 1px solid var(--line-soft);
}
.dist li:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.dist .p {
  font-size: var(--fs-body);
  font-weight: 300;
}
.dist .d {
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-cap);
  letter-spacing: 0.08em;
  color: var(--accent);
  white-space: nowrap;
}

/* -------------------------------------------------------------------- map */

.map-page {
  display: flex;
  flex-direction: column;
}
.map-head {
  height: auto;
  padding-bottom: 0;
  gap: 0.7rem;
}
.map-fig {
  flex: 1;
  min-height: 0;
  padding: var(--gap) var(--pad) calc(var(--pad) + var(--runner-h));
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-fig img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* ------------------------------------------------------------- residences */

.mix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--gap);
  /* fill the page rather than sitting at the bottom under a band of dead space */
  flex: 1;
  min-height: 0;
  margin-top: var(--gap);
}
.mix-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  min-height: 0;
}
.mix-shot {
  position: relative;
  flex: 1;
  min-height: 0;
}
/* contain, not cover: the axonometrics sit on pure black, so the letterboxing
   is invisible and no plan gets its corner cropped off */
.mix-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}
.mix-shot .badge {
  top: 10px;
  left: 10px;
}
.mix-meta {
  padding: var(--mix-pad);
  border-top: 1px solid var(--line-soft);
}
.mix-meta h3 {
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-mix-h);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mix-meta p {
  margin-top: 0.3rem;
  font-size: var(--fs-cap);
  color: var(--silver-dim);
}
.mix-meta b {
  color: var(--accent);
  font-weight: 500;
}
.residences .cap {
  margin-top: var(--gap);
}

/* ------------------------------------------------------------------- unit */

.key-row {
  display: flex;
  gap: var(--gap);
}
.key-row > div {
  flex: 1;
  padding: var(--key-pad);
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.key-row .k {
  display: block;
  font-size: var(--fs-cap);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.key-row .v {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-key);
  color: var(--silver);
}

.lines {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-table);
}
.lines th {
  text-align: left;
  font-size: var(--fs-cap);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.lines td {
  padding: var(--row-pad) 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--silver);
  font-weight: 300;
  vertical-align: baseline;
}
.lines td:not(:last-child),
.lines th:not(:last-child) {
  padding-right: 0.9rem;
}
.lines .mono {
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
}
.lines .num {
  color: var(--accent);
}
.lines .out {
  color: var(--silver-dim);
  font-size: var(--fs-out);
  line-height: 1.35;
}

.unit-media {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: var(--pad) var(--pad) calc(var(--pad) + var(--runner-h)) 0;
  gap: var(--gap);
}
.unit .col-media {
  overflow: visible;
}
.axo {
  flex: 1;
  min-height: 0;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* contain: cover was clipping the corners off the wider layouts (the 2 and 3
   bedroom, the penthouse). The artwork is already on pure black, so the
   letterboxing is invisible. */
.axo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.04);
}
.axo {
  position: relative;
}
.unit-shots {
  display: flex;
  gap: var(--gap);
}
.unit-shots figure {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
}
.unit-shots img {
  width: 100%;
  height: var(--shot-h);
  object-fit: cover;
}
.useful > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--useful-pad) 0;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-cap);
  color: var(--silver-dim);
}
.useful > div:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.useful b {
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
}

/* ------------------------------------------------------------------- plan */

.plan-page {
  display: flex;
  flex-direction: column;
  padding: var(--pad) var(--pad) calc(var(--pad) + var(--runner-h));
}
.plan-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.plan-head p {
  font-size: var(--fs-cap);
  color: var(--silver-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-fig {
  flex: 1;
  min-height: 0;
  margin-top: var(--gap);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* The plan sheets are white artwork: the image itself is the white card, so no
   backing panel (a full-width white slab under a smaller drawing reads as a
   layout error). */
.plan-fig img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* -------------------------------------------------------------- interiors */

.interiors {
  display: flex;
  flex-direction: column;
}
.int-head {
  padding: var(--pad) var(--pad) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: none;
}
.int-head .lede {
  max-width: 62ch;
}
/* Flex, not grid: the hero has to span however many frames end up beside it
   (three renders for the studio, four for the two bedroom) and `grid-row:
   1 / -1` does not span implicit rows. */
.int-grid {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: var(--gap);
  padding: var(--gap) var(--pad) 0;
}
.int-hero {
  flex: 1.7;
  min-width: 0;
}
.int-rest {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.int-rest figure {
  flex: 1;
  min-height: 0;
}
.int-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-elev);
}
.int-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The label pills shrink here: four of them on one page at full size would
   fight the photography they are meant to annotate. */
.int-grid .chips {
  left: 12px;
  right: 12px;
  bottom: 11px;
}
.int-rest .chip {
  font-size: calc(var(--fs-chip) * 0.92);
  padding: 4px 10px 5px;
}
.interiors > .cap {
  padding: var(--gap) var(--pad) calc(var(--pad) + var(--runner-h));
  flex: none;
}

/* -------------------------------------------------------------- amenities */

.amen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: auto;
  min-height: 0;
}
.amen-grid.three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  flex: 1;
}
.amen-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  min-height: 0;
}
.amen-shot {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.amen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amen-copy {
  padding: var(--amen-pad);
  border-top: 1px solid var(--line-soft);
}
.amen-meta {
  font-size: var(--fs-cap);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.amen-copy h3 {
  margin-top: 0.3rem;
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-amen-h);
  text-transform: uppercase;
}
.amen-copy p {
  margin-top: 0.45rem;
  font-size: var(--fs-amen-b);
  font-weight: 300;
  line-height: 1.5;
  color: var(--silver-dim);
  /* two lines reserved, so side-by-side cards crop their images to the same
     height whatever the copy length */
  min-height: 3em;
}
.amen-page .cap {
  margin-top: var(--gap);
}

/* -------------------------------------------------------------- developer */

.trust {
  display: flex;
  gap: var(--gap);
  padding-top: var(--gap);
  border-top: 1px solid var(--line-soft);
}
.t-n {
  font-family: var(--exp);
  font-weight: 700;
  font-size: var(--fs-trust);
  line-height: 1;
}
.t-l {
  margin-top: 0.4rem;
  font-size: var(--fs-cap);
  color: var(--silver-dim);
  line-height: 1.4;
}

/* -------------------------------------------------------------------- faq */

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap) calc(var(--gap) * 1.6);
  flex: 1;
  min-height: 0;
  align-content: space-between;
  margin-top: var(--gap);
}
.faq-item {
  padding-top: var(--faq-pad);
  border-top: 1px solid var(--line-soft);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item h3 {
  font-size: var(--fs-faq-q);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--silver);
}
.faq-item p {
  margin-top: 0.45rem;
  font-size: var(--fs-amen-b);
  font-weight: 300;
  line-height: 1.55;
  color: var(--silver-dim);
}

/* -------------------------------------------------------------- enquiries */

.enq-inner {
  z-index: 1;
}
.enq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--gap);
  margin-top: auto;
  align-items: stretch;
}
.enq-card {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: var(--key-pad);
  background: rgba(13, 13, 15, 0.72);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.enq-k {
  font-size: var(--fs-cap);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.enq-card b {
  font-size: var(--fs-enq);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.enq-s {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: var(--fs-cap);
  color: var(--silver-dim);
}
.enq-qr {
  display: flex;
  gap: var(--gap);
}
.enq-qr figure {
  text-align: center;
}
.enq-qr img {
  width: var(--qr);
  height: var(--qr);
  border: 6px solid #000;
  border-radius: 3px;
}
.enq-qr figcaption {
  margin-top: 0.4rem;
  font-size: var(--fs-cap);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.mark-sm {
  width: var(--mark-sm-w);
  height: auto;
  margin-top: var(--gap);
}
.disclaimer {
  margin-top: 0.7rem;
  font-size: var(--fs-disc);
  line-height: 1.45;
  color: rgba(155, 155, 162, 0.85);
}
