/* =========================================================================
   Impact Ironworks Ltd. — site styles
   Vanilla CSS. Fonts: Archivo (display) + Inter (body) via Google Fonts.
   ========================================================================= */

:root {
  --c-orange: #f26101;
  --c-orange-2: #ff7a1f;
  --c-rust: #ae3500;
  --c-ink: #15171a;
  --c-dark: #0b0e0f;
  --c-dark-2: #14181a;
  --c-body: #6f6f6f;
  --c-body-dark: #b7b9bb;
  --c-cream: #f6f5f0;
  --c-gray-card: #eceae4;
  --c-line: #e6e4df;
  --c-line-dark: #2a2e30;
  --c-navy: #1f2d47;

  --f-display: "Anton", "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --f-ui: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --topbar-h: 42px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-body);
  background: #fff;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--c-ink);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------- helpers */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--tight { padding: 64px 0; }
.overline {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--c-orange);
  display: inline-block;
  margin-bottom: 18px;
}
.overline--muted { color: #8b8e90; }
.text-orange { color: var(--c-orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 14px 30px;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s;
}
.btn--dark { background: var(--c-ink); color: #fff; }
.btn--dark:hover { background: var(--c-orange); }
.btn--orange { background: var(--c-rust); color: #fff; text-transform: uppercase; }
.btn--orange:hover { background: var(--c-orange); }
.btn--ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--c-ink); }

/* ============================================================== top bar */
.topbar {
  background: var(--c-rust);
  color: #fff;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; gap: 34px; }
.topbar a { display: inline-flex; align-items: center; gap: 9px; color: #fff; opacity: .95; }
.topbar a:hover { opacity: 1; }
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar__social { margin-left: auto; display: flex; align-items: center; gap: 15px; }
.topbar__social a { display: inline-flex; opacity: .82; }
.topbar__social a:hover { opacity: 1; color: #ffd9c7; }
.topbar__social svg { width: 16px; height: 16px; }

/* =============================================================== header */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 60px; width: auto; }
.logo__img--white { display: none; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--c-orange); }
.nav a.is-active { color: var(--c-orange) !important; }

.nav-toggle { display: none; width: 46px; height: 46px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 2.5px; width: 26px; background: var(--c-ink); transition: .3s; }

/* --- home: transparent overlay header over hero --- */
.is-home .header {
  position: absolute;
  top: var(--topbar-h);
  left: 0; right: 0;
  background: transparent;
  box-shadow: none;
}
.is-home .header .nav a { color: #fff; }
.is-home .header .nav a:hover { color: var(--c-orange); }
.is-home .header .logo__img--dark { display: none; }
.is-home .header .logo__img--white { display: block; }

.is-home .header.is-stuck {
  position: fixed;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,.10);
  animation: dropDown .35s var(--ease);
}
.is-home .header.is-stuck .nav a { color: var(--c-ink); }
.is-home .header.is-stuck .nav a:hover { color: var(--c-orange); }
.is-home .header.is-stuck .logo__img--dark { display: block; }
.is-home .header.is-stuck .logo__img--white { display: none; }
@keyframes dropDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ========================================================== home hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));   /* topbar + hero = 100vh */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 6s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,14,.55) 0%, rgba(10,12,14,.15) 38%, rgba(10,12,14,.78) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 92px;
  padding-top: 160px;
}
.hero__title {
  display: inline-block;
  color: #fff;
  line-height: 1.03;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  background: rgba(12, 15, 17, .36);
  padding: 18px 32px 24px;
}
.hero__line1, .hero__line2 { display: block; white-space: nowrap; }
.hero__line1 { font-size: clamp(1.4rem, 2.9vw, 2.55rem); }   /* JS refits to match line 2's width */
.hero__line2 { color: var(--c-orange); font-size: clamp(1.7rem, 5.4vw, 4.45rem); margin-top: 4px; }
.hero__arrows { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; pointer-events: none; padding: 0 18px; }
.hero__arrow {
  pointer-events: auto;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: .25s;
  background: rgba(0,0,0,.12);
}
.hero__arrow:hover { background: var(--c-orange); border-color: var(--c-orange); }
.hero__arrow svg { width: 20px; height: 20px; }
.hero__dots { position: absolute; z-index: 3; bottom: 28px; left: 0; right: 0; display: flex; gap: 11px; justify-content: center; }
.hero__dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.4); transition: .25s; }
.hero__dots button.is-active { background: var(--c-orange); transform: scale(1.15); }

/* ====================================================== page hero (inner) */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,12,.62), rgba(8,10,12,.72)); }
.page-hero__title { position: relative; z-index: 1; color: #fff; font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 900; }

/* ============================================================ intro split */
.split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.25fr); gap: 60px; align-items: start; }
.split__head { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 900; }
.split__body p { margin-bottom: 20px; }
.split__body p:last-child { margin-bottom: 0; }

/* ============================================================== services */
.section--cream { background: var(--c-cream); }
.services { background: #fff; }
.services__head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.services__head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 18px; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.service-card { background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.06); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.service-card__img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.service-card__body { flex: 1; padding: 26px 26px 34px; background: #3a3d3f; border-bottom-right-radius: 42px; transition: background .3s var(--ease); }
.service-card__body h3 { font-size: 1.55rem; margin-bottom: 12px; color: #fff; }
.service-card__body p { font-size: .95rem; color: #cacaca; line-height: 1.55; transition: color .3s var(--ease); }
/* hover: body turns brand orange */
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 52px rgba(0,0,0,.13); }
.service-card:hover .service-card__body { background: var(--c-orange); }
.service-card:hover .service-card__body p { color: #fff; }

/* =============================================================== marquee */
.marquee { overflow: hidden; background: transparent; margin-top: 56px; }
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 9vw, 7.5rem);
  line-height: 1;
  color: #9a9c9e;
  letter-spacing: -.01em;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee__track span { padding-right: 60px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================================= shape / editorial */
.shape { background: var(--c-cream); }
.shape__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.shape__col { display: flex; flex-direction: column; gap: 38px; }
.shape h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); margin-bottom: 22px; }
.shape p { margin-bottom: 18px; font-size: 1.04rem; }
.shape img { width: 100%; object-fit: cover; border-bottom-right-radius: 46px; }
.shape__img--tall { aspect-ratio: 1 / 1; }     /* right-top focal image */
.shape__img--wide { aspect-ratio: 1 / 1; }     /* left-bottom image */
.shape__text { padding-right: 6px; }

/* ============================================================ dark feature */
.feature { background: var(--c-dark); color: #fff; }
.feature__head { text-align: center; margin-bottom: 56px; }
.feature__head h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.feature__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; gap: 40px; }

/* ============================================================ project card */
.pcard {
  background: #fff;
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid var(--c-orange);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.pcard__img { aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.pcard__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pcard__title { font-size: 1.3rem; font-weight: 800; margin-bottom: 18px; line-height: 1.1; }
.pcard__meta { margin-bottom: 16px; }
.pcard__row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--c-line); font-size: .9rem; }
.pcard__row span:first-child { font-family: var(--f-display); font-weight: 700; color: var(--c-ink); }
.pcard__row span:last-child { color: #8a8a8a; text-align: right; }
.pcard__desc { font-size: .9rem; color: #777; margin-bottom: 22px; }
.pcard .btn { align-self: flex-start; margin-top: auto; }

/* plant card list */
.pcard__list { margin-top: 18px; font-size: .88rem; color: #777; }
.pcard__list li { counter-increment: pl; padding: 3px 0; }
.pcard__list { counter-reset: pl; }
.pcard__list li::before { content: counter(pl) ". "; color: var(--c-orange); font-weight: 700; }

/* =============================================================== work grid */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.work-grid .pcard { box-shadow: 0 16px 40px rgba(0,0,0,.08); }

/* ======================================================= project (single) */
.single__intro { max-width: 880px; }
.single__back { margin-bottom: 30px; }
.single__meta { font-family: var(--f-display); font-weight: 700; color: var(--c-ink); margin-bottom: 20px; font-size: 1.02rem; }
.single__meta span { color: var(--c-orange); }
.single__desc { font-size: 1.05rem; line-height: 1.8; margin-bottom: 8px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.gallery a { display: block; overflow: hidden; aspect-ratio: 4/3; background: #eee; border-bottom-right-radius: 40px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7,9,10,.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { position: absolute; color: #fff; width: 56px; height: 56px; display: grid; place-items: center; }
.lightbox__close { top: 18px; right: 24px; font-size: 2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2.4rem; }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }
.lightbox__nav:hover, .lightbox__close:hover { color: var(--c-orange); }

/* ================================================================ contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact__lead h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 900; margin-bottom: 18px; }
.contact__lead p { margin-bottom: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info li { display: flex; align-items: center; gap: 16px; color: #6c6c6c; }
.contact-info svg { width: 20px; height: 20px; color: var(--c-rust); flex: none; }
.contact-info b { color: var(--c-ink); font-weight: 600; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; color: var(--c-ink); font-weight: 600; }
.field input, .field textarea {
  background: #f1f0ec;
  border: 1px solid transparent;
  padding: 14px 16px;
  color: var(--c-ink);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-orange); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.has-error input, .field.has-error textarea { border-color: #d33; background: #fff5f5; }
.field__err { color: #d33; font-size: .76rem; display: none; }
.field.has-error .field__err { display: block; }
.form__status { grid-column: 1/-1; padding: 14px 18px; background: #e8f6ec; color: #1c7a3d; font-size: .9rem; display: none; }
.form__status.is-visible { display: block; }

.map { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.15); }

/* ================================================================= footer */
.footer {
  background: #f4f3ef;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23e3e1da' stroke-width='1.2'%3E%3Cpath d='M28 0l24 14v28L28 56 4 42V14z'/%3E%3Cpath d='M28 50l24 14v28L28 106 4 92V64z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 70px 0 0;
  color: #6f6f6f;
}
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.4fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer__logo { height: 64px; margin-bottom: 20px; }
.footer__tag { font-size: .92rem; max-width: 230px; }
.footer h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 22px; color: var(--c-ink); }
.footer__links li { margin-bottom: 12px; }
.footer__links a { display: inline-flex; align-items: center; gap: 10px; font-size: .94rem; transition: color .2s, gap .2s; }
.footer__links a::before { content: "›"; color: var(--c-orange); font-weight: 700; }
.footer__links a:hover { color: var(--c-orange); gap: 14px; }
.footer__contact li { margin-bottom: 14px; font-size: .94rem; display: flex; gap: 10px; }
.footer__contact .lbl { color: var(--c-ink); font-weight: 700; }
.footer__contact svg { width: 17px; height: 17px; color: var(--c-orange); flex: none; margin-top: 3px; }
.footer__certs { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; align-content: flex-start; }
.footer__certs img { height: 56px; width: auto; }
.cert-sds {
  display: inline-flex; flex-direction: column; line-height: 1;
  border: 2px solid #2b6cb0; border-radius: 10px; padding: 8px 12px; color: #2b6cb0;
}
.cert-sds b { font-family: var(--f-display); font-weight: 900; font-size: 1.25rem; }
.cert-sds small { font-size: .5rem; letter-spacing: .06em; margin-top: 3px; color: #5a7da6; }
.footer__bottom { background: var(--c-dark); padding: 22px 0; text-align: center; font-size: .85rem; color: #b7b9bb; }
.footer__bottom a { color: #fff; transition: color .2s; }
.footer__bottom a:hover { color: var(--c-orange); }
.footer__contact a, .contact-info a { transition: color .2s; }
.footer__contact a:hover, .contact-info a:hover { color: var(--c-orange); }

/* ============================================================ animations */
/* Hidden only when JS is active (html.js) — content stays visible otherwise. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================== responsive */
@media (max-width: 980px) {
  .split, .contact__grid { grid-template-columns: 1fr; gap: 34px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .feature__grid { grid-template-columns: repeat(2, 1fr); }
  .shape__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 32px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -14px 0 40px rgba(0,0,0,.18);
    z-index: 950;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: var(--c-ink) !important; font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--c-line); }
  /* keep header solid/readable on mobile even for home */
  .is-home .header { position: sticky; top: 0; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
  .is-home .header .nav a { color: var(--c-ink); }
  .is-home .header .logo__img--white { display: none; }
  .is-home .header .logo__img--dark { display: block; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 940; opacity: 0; visibility: hidden; transition: .3s; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .services__grid, .work-grid, .feature__grid, .feature__grid--2, .form-grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__inner { gap: 18px; font-size: .76rem; }
  .hero { min-height: calc(100vh - var(--topbar-h) - var(--header-h)); }
  .hero__inner { padding-top: 120px; padding-bottom: 70px; }
  .hero__title { padding: 12px 18px 16px; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .gallery { grid-template-columns: 1fr; }
  .topbar a span { display: none; }
  .topbar a { gap: 0; }
}

/* =========================================================================
   TYPOGRAPHY OVERRIDE
   Display headings use Anton (heavy, condensed, squared grotesque) — matches
   the source design. Anton ships ONE weight, so these must stay at weight 400
   or the browser synthesises (faux) bold and distorts the letterforms.
   Nav, buttons, meta labels and footer headings stay on Archivo (normal width).
   ========================================================================= */
h1, h2, h3, h4,
.hero__title, .hero__line1, .hero__line2, .page-hero__title, .split__head,
.services__head h2, .shape h2, .feature__head h2, .contact__lead h2,
.pcard__title, .service-card__body h3, .marquee__track, .overline,
.cert-sds b {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0;
}

/* Anton runs tall + tight; relax line-height a touch and size up the big ones */
.hero__title { line-height: 1.03; }
.page-hero__title { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: .01em; }
.split__head { font-size: clamp(2.3rem, 4.2vw, 3.6rem); line-height: 1.05; }
.services__head h2, .shape h2, .feature__head h2,
.contact__lead h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.06; }
.overline { font-weight: 400; letter-spacing: .18em; font-size: .82rem; }

/* UI elements — normal-width bold (not condensed) */
.nav a, .btn, .footer h4,
.pcard__row span:first-child, .single__meta {
  font-family: var(--f-ui);
}
.footer h4 { font-weight: 700; }
.single__meta { font-weight: 700; }
.cert-sds b { font-size: 1.4rem; }
