:root {
  /* ---- Color: dark (primary) ---- */
  --ink: #0B0E12;
  --ink-raised: #121821;
  --ink-line: #26303B;
  --ink-line-soft: rgba(231, 239, 244, 0.09);
  --text-inverse: #E8EDF1;
  --text-inverse-dim: #97A4B0;

  /* ---- Color: light (secondary surfaces) ---- */
  --paper: #F1F2EC;
  --paper-raised: #E8EAE2;
  --paper-line: #D6D9CE;
  --text: #10151A;
  --text-dim: #4C5660;

  /* ---- Accent: BIMVault brand orange ("Vault") ---- */
  --accent: #C97A3D;
  --accent-strong: #A85F28;
  --accent-tint: rgba(201, 122, 61, 0.14);

  /* ---- Status ---- */
  --ok: #4E9E6E;

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* ---- Layout ---- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 3px;
  --radius: 6px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --fast: 150ms;
  --med: 280ms;
}


*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Defensive: the HTML `hidden` attribute should always win over an
   element's own `display` rule, in case any future markup change
   toggles `hidden` instead of unmounting the element. */
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
}

.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.surface-light {
  background: var(--paper);
  color: var(--text);
}

.surface-dark {
  background: var(--ink);
  color: var(--text-inverse);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------------------------------------------------------- */
/* Blueprint grid backdrop — used behind the hero               */
/* ---------------------------------------------------------- */

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-line-soft) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 40%, transparent 90%);
  pointer-events: none;
}

.crosshair {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.crosshair::before, .crosshair::after {
  content: '';
  position: absolute;
  background: var(--accent);
  opacity: 0.55;
}
.crosshair::before { width: 100%; height: 1px; top: 50%; }
.crosshair::after { height: 100%; width: 1px; left: 50%; }

/* ---------------------------------------------------------- */
/* Signature element: Drawing Title Block                       */
/* Modeled on the title block found on engineering drawing      */
/* sheets — used in the hero, product cards, and project pages  */
/* ---------------------------------------------------------- */

.title-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink-line);
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--ink-raised);
}

.title-block__field {
  padding: 8px 12px;
  border-right: 1px solid var(--ink-line);
  border-top: 1px solid var(--ink-line);
  overflow: hidden;
}
.title-block__field:nth-child(4n) { border-right: none; }
.title-block__field:nth-child(-n+4) { border-top: none; }

.title-block__label {
  display: block;
  color: var(--text-inverse-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9.5px;
  margin-bottom: 3px;
}

.title-block__value {
  color: var(--text-inverse);
  display: block;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.title-block--light {
  background: var(--paper-raised);
  border-color: var(--paper-line);
}
.title-block--light .title-block__field {
  border-color: var(--paper-line);
}
.title-block--light .title-block__label { color: var(--text-dim); }
.title-block--light .title-block__value { color: var(--text); }

/* Stacked variant: one full-width row per field, used where the
   4-column drawing-sheet layout doesn't fit the content (e.g. a
   short contact-info list). */
.title-block--stacked {
  grid-template-columns: 1fr;
}
.title-block--stacked .title-block__field {
  border-right: none;
}
.title-block--stacked .title-block__field:first-child {
  border-top: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease), color var(--fast) var(--ease), transform var(--fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #06141B;
}
.btn--primary:hover { background: #57A2C2; }

.btn--outline-dark {
  border-color: var(--ink-line);
  color: var(--text-inverse);
  background: transparent;
}
.btn--outline-dark:hover { border-color: var(--accent); color: var(--accent); }

.btn--outline-light {
  border-color: var(--paper-line);
  color: var(--text);
  background: transparent;
}
.btn--outline-light:hover { border-color: var(--accent-strong); color: var(--accent-strong); }

.btn--gumroad {
  background: transparent;
  border-color: var(--ink-line);
  color: var(--text-inverse-dim);
  font-size: 13px;
  padding: 10px 16px;
}
.btn--gumroad:hover { border-color: var(--accent-strong); color: var(--accent-strong); }

.btn--sm { padding: 9px 15px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ---------------------------------------------------------- */
/* Cards                                                         */
/* ---------------------------------------------------------- */

.card {
  border: 1px solid var(--ink-line);
  background: var(--ink-raised);
  transition: border-color var(--med) var(--ease), transform var(--med) var(--ease);
}

.card--light {
  border-color: var(--paper-line);
  background: #FFFFFF;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .title-block { grid-template-columns: repeat(2, 1fr); }
  .title-block__field:nth-child(-n+4) { border-top: 1px solid var(--ink-line); }
  .title-block__field:nth-child(-n+2) { border-top: none; }
  .title-block__field:nth-child(2n) { border-right: none; }
}

/* ---------------------------------------------------------- */
/* Tag / category chip                                          */
/* ---------------------------------------------------------- */

.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--ink-line);
  color: var(--text-inverse-dim);
  border-radius: 2px;
}
.chip--light { border-color: var(--paper-line); color: var(--text-dim); }
.chip--accent { border-color: var(--accent); color: var(--accent); }

/* ---------------------------------------------------------- */
/* Visually hidden (a11y)                                       */
/* ---------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------- */
/* Technical figure (SVG placeholder art)                       */
/* ---------------------------------------------------------- */

.tech-figure {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--ink-line);
  aspect-ratio: 280 / 220;
}

.product-card__image {
  object-fit: cover;
  background: var(--ink);
}

.product-card__media {
  position: relative;
}

/* Small, subtle brand mark in the corner of product/project imagery.
   Deliberately tiny — the family/project visual stays the focus. */
.product-card__watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  opacity: 0.55;
  pointer-events: none;
}

/* ---------------------------------------------------------- */
/* CTA band                                                      */
/* ---------------------------------------------------------- */

.cta-band {
  position: relative;
  border-top: 1px solid var(--ink-line);
}

.cta-band__inner {
  position: relative;
  padding-block: clamp(64px, 9vw, 108px);
}

.cta-band__content {
  position: relative;
  max-width: 620px;
}

.cta-band__title {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 14px;
}

.cta-band__desc {
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 17px;
  opacity: 0.75;
  max-width: 520px;
}

/* ---------------------------------------------------------- */
/* Navbar                                                        */
/* ---------------------------------------------------------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 18, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.navbar__logo {
  height: 26px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.navbar__link {
  font-size: 14px;
  color: var(--text-inverse-dim);
  position: relative;
  padding: 6px 0;
  transition: color var(--fast) var(--ease);
}
.navbar__link:hover { color: var(--text-inverse); }
.navbar__link--active { color: var(--text-inverse); }
.navbar__link--active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
}

.navbar__cta { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}
.navbar__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-inverse);
  display: block;
}

.navbar__mobile {
  display: none;
}

@media (max-width: 860px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__mobile {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--ink-line);
    padding: 8px var(--gutter) 20px;
  }
  .navbar__mobile-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--ink-line-soft);
    font-size: 15px;
    color: var(--text-inverse-dim);
  }
  .navbar__mobile-link.navbar__link--active { color: var(--accent); }
}

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

.footer {
  border-top: 1px solid var(--ink-line);
  background: var(--ink);
  padding-block: 56px 32px;
}

.footer__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ink-line-soft);
  margin-bottom: 36px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
}

.footer__logo {
  height: 22px;
  width: auto;
  display: block;
}

.footer__tagline {
  color: var(--text-inverse-dim);
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 200px));
  gap: 32px;
  margin-bottom: 44px;
}

.footer__grid > div { display: flex; flex-direction: column; gap: 12px; }

.footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-dim);
  margin-bottom: 2px;
}

.footer__grid a {
  font-size: 14.5px;
  color: var(--text-inverse-dim);
  transition: color var(--fast) var(--ease);
}
.footer__grid a:hover { color: var(--accent); }

.footer__pending {
  font-size: 14.5px;
  color: var(--text-inverse-dim);
  opacity: 0.65;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-inverse-dim);
  font-family: var(--font-mono);
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 14vw, 168px) clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--ink-line);
}

.hero__inner {
  position: relative;
}

.hero__title {
  font-size: clamp(52px, 9vw, 104px);
  margin-top: 18px;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--accent);
  margin-top: 10px;
  font-weight: 500;
}

.hero__desc {
  max-width: 560px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-inverse-dim);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero__block {
  margin-top: 64px;
  max-width: 720px;
}

@media (max-width: 640px) {
  .hero__block .title-block { font-size: 10px; }
}

/* ---------------------------------------------------------- */
/* Product / Project card                                       */
/* ---------------------------------------------------------- */

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--accent); }

.product-card__body {
  padding: 20px 20px 8px;
  flex: 1;
}

.product-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__name {
  font-size: 19px;
  margin-top: 12px;
}
.product-card__name a:hover { color: var(--accent); }

.product-card__desc {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-inverse-dim);
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 20px 20px;
}

/* ---------------------------------------------------------- */
/* Service card                                                  */
/* ---------------------------------------------------------- */

.service-card {
  border: 1px solid var(--ink-line);
  padding: 28px 24px;
  background: var(--ink-raised);
  transition: border-color var(--med) var(--ease);
}
.service-card:hover { border-color: var(--accent); }

.service-card__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.service-card__title {
  font-size: 19px;
  margin-top: 14px;
}

.service-card__summary {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-inverse-dim);
}

.service-card--light {
  background: #fff;
  border-color: var(--paper-line);
}
.service-card--light .service-card__summary { color: var(--text-dim); }

/* ---------------------------------------------------------- */
/* What-we-do cards                                              */
/* ---------------------------------------------------------- */

.what-card {
  border-top: 1px solid var(--ink-line);
  padding-top: 20px;
}

.what-card__n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}

.what-card__title {
  font-size: 21px;
  margin-top: 12px;
}

.what-card__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-inverse-dim);
}

/* ---------------------------------------------------------- */
/* Why items (light surface)                                    */
/* ---------------------------------------------------------- */

.why-item__title {
  font-size: 17px;
  font-family: var(--font-display);
}

.why-item__text {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ---------------------------------------------------------- */
/* Section CTA row                                               */
/* ---------------------------------------------------------- */

.section-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ---------------------------------------------------------- */
/* Page header (secondary pages)                                */
/* ---------------------------------------------------------- */

.page-header { padding-bottom: 8px; }

/* ---------------------------------------------------------- */
/* Catalogue controls                                            */
/* ---------------------------------------------------------- */

.catalogue-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-line);
}

.catalogue-search {
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 340px;
}
.catalogue-search:focus { border-color: var(--accent); outline: none; }
.catalogue-search::placeholder { color: var(--text-inverse-dim); }

.catalogue-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-btn {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--ink-line);
  background: transparent;
  color: var(--text-inverse-dim);
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--fast) var(--ease);
}
.chip-btn:hover { border-color: var(--accent); color: var(--text-inverse); }
.chip-btn--active {
  background: var(--accent-tint);
  border-color: var(--accent);
  color: var(--accent);
}

.catalogue-empty {
  margin-top: 48px;
  color: var(--text-inverse-dim);
  font-size: 15px;
}

/* ---------------------------------------------------------- */
/* Product / Project detail                                      */
/* ---------------------------------------------------------- */

.back-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-inverse-dim);
  margin-bottom: 32px;
  transition: color var(--fast) var(--ease);
}
.back-link:hover { color: var(--accent); }

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail__media {
  border: 1px solid var(--ink-line);
  position: sticky;
  top: 92px;
}
.product-detail__media .tech-figure { border-bottom: none; aspect-ratio: 280/260; }
.product-detail__image { object-fit: cover; background: var(--ink); }

.product-detail__title {
  font-size: clamp(30px, 4vw, 42px);
  margin-top: 14px;
}

.product-detail__tagline {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 16px;
  margin-top: 8px;
}

.product-detail__desc {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-inverse-dim);
  max-width: 52ch;
}

.product-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.product-detail__features {
  margin: 28px 0 0;
  padding-left: 20px;
  max-width: 52ch;
  color: var(--text-inverse-dim);
  font-size: 14.5px;
  line-height: 1.8;
}
.product-detail__features li { margin-bottom: 4px; }

.product-detail__block { margin-top: 44px; max-width: 460px; }

.related-heading {
  font-size: 22px;
}

@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__media { position: static; }
}

.project-scope {
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-inverse-dim);
  max-width: 52ch;
}
.project-scope strong { color: var(--text-inverse); }

.services-note {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  font-size: 14.5px;
  color: var(--text-inverse-dim);
  max-width: 640px;
}

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

.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-inverse-dim);
  margin-bottom: 20px;
  max-width: 60ch;
}

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; }
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-inverse-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 11px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: none;
  letter-spacing: normal;
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  color: var(--text-inverse);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-aside .title-block__value a { color: var(--accent); }
.contact-aside .title-block__value a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

.not-found { padding-block: clamp(100px, 16vw, 160px); text-align: center; }
.not-found__title { font-size: clamp(32px, 5vw, 48px); margin-top: 16px; }
.not-found__text { margin: 18px auto 32px; color: var(--text-inverse-dim); max-width: 420px; }
