/* ============================================================
   CIC Ltd
   Light, high-contrast, one accent (cobalt), one radius (4px),
   one type family. Photos run in full colour, not tinted.
   ============================================================ */

/* Type pairing per ui-ux-pro-max "Trust & Authority": Lexend for headings,
   Source Sans 3 for body. Both self-hosted, no third-party request at runtime. */
@font-face {
  font-family: "Lexend";
  src: url("assets/fonts/lexend-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/sourcesans-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Lexend", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --font-body:    "Source Sans 3", ui-sans-serif, system-ui, "Segoe UI", sans-serif;

  /* Neutrals are kept genuinely neutral so the red is the only colour on the
     page. Navy was dropped: navy against red reads flag, not brand. */
  --bg:           #ffffff;
  --bg-2:         #f5f6f8;
  --surface:      #ffffff;
  --surface-2:    #fafbfc;
  --line:         #e5e7eb;
  --line-strong:  #c9ced6;

  --ink:          #16181d;   /* near-black charcoal, dark furniture */
  --text:         #16181d;
  --text-2:       #4a505a;
  --muted:        #697180;

  /* [EDIT] Swap this for the exact red from the CIC logo once available.
     Everything else on the page derives from it. */
  --accent:       #c8102e;
  --accent-hover: #a20c25;
  --accent-soft:  #fdeef0;
  --accent-line:  #f2ccd3;
  --on-accent:    #ffffff;

  --shadow:       0 1px 2px rgba(22, 24, 29, 0.05),
                  0 14px 34px -14px rgba(22, 24, 29, 0.20);

  --r:            4px;
  --shell:        1220px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .wordmark, .btn, .eyebrow, .contact__key, .brands__label {
  font-family: var(--font-display);
}

img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  padding: 12px 20px;
  font-weight: 600;
}
.skip:focus { left: 0; }

:where(a, button):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Type scale ---------- */

.h2 {
  font-size: clamp(1.85rem, 1.1rem + 2.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 600;
  max-width: 20ch;
}

.lede {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--text-2);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 26px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease),
              color 0.22s var(--ease), box-shadow 0.22s var(--ease),
              transform 0.12s var(--ease);
}
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }

/* A top highlight and a tinted drop give the button a lit edge rather than a
   flat fill. The shadow is tinted to the accent, never neutral black. */
.btn--primary {
  /* Solid colour first so the button is never white-on-white if the gradient
     fails to paint. Both gradient stops clear AA against white text. */
  background-color: var(--accent);
  background-image: linear-gradient(180deg, #d4213b 0%, var(--accent) 62%);
  color: var(--on-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(22, 24, 29, 0.10),
    0 10px 22px -10px rgba(200, 16, 46, 0.6);
}
.btn--primary:hover {
  background-color: var(--accent-hover);
  background-image: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 2px rgba(22, 24, 29, 0.10),
    0 14px 26px -10px rgba(200, 16, 46, 0.55);
}
.btn--primary:active { transform: translateY(1px); }

.btn--ghost {
  background: var(--bg);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--text-2); background: var(--surface-2); }
.btn--ghost:active { transform: translateY(1px); }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Padding rather than min-height so the CIC/Ltd baseline pairing survives. */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-right: auto;
  padding-block: 6px;
}
.wordmark__mark {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.wordmark__sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
/* Padded to a 44px target. This bar is still shown on touch tablets at
   1024px, so these are tapped, not only clicked. */
.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--accent); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span { display: block; height: 1.5px; background: var(--text); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav__mobile a { padding: 13px 0; color: var(--text-2); }
.nav__mobile .btn { margin-top: 12px; color: var(--on-accent); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile:not([hidden]) { display: flex; }
}

/* ---------- Hero: asymmetric split, copy left, photo bleeding off right ---------- */

/* Two in-flow columns: copy on a shell-aligned left column, photo bleeding
   off the right edge. Kept in flow rather than absolutely positioned so the
   hero height is driven by its own content. */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  min-height: min(calc(100dvh - 68px), 720px);
}

.hero__inner {
  display: flex;
  align-items: center;
  padding-left: max(24px, calc((100vw - var(--shell)) / 2 + 24px));
  padding-right: clamp(28px, 4vw, 64px);
  padding-block: clamp(56px, 7vw, 96px);
}
.hero__content { max-width: 37rem; }

.hero__title {
  font-size: clamp(2.05rem, 1.05rem + 2.8vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.hero__lede {
  margin-top: 22px;
  max-width: 50ch;
  color: var(--text-2);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Hero identity panel ---------- */
/* The company signature, promoted from an email footer to the thing the eye
   lands on. Ink ground so it reads as a plate, not another content card. */

.hero__card {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(36px, 4vw, 64px);
  padding-right: max(clamp(36px, 4vw, 64px), calc((100vw - var(--shell)) / 2 + 24px));
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

/* A single soft light source, top right, plus a low ember at the base.
   Keeps the ink from reading flat without turning it into a gradient poster. */
.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(115% 85% at 86% 4%, rgba(200, 16, 46, 0.42) 0%, rgba(200, 16, 46, 0) 56%),
    radial-gradient(90% 70% at 12% 104%, rgba(200, 16, 46, 0.16) 0%, rgba(200, 16, 46, 0) 62%),
    radial-gradient(70% 60% at 30% 20%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
}

/* A single specular sweep across the plate. This is the shine, and it is one
   pass only: any more and it stops reading as light and starts reading as a
   gradient someone left switched on. */
.hero__card > .sig::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 90%;
  height: 230%;
  z-index: -1;
  pointer-events: none;
  transform: rotate(18deg);
  filter: blur(26px);
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 44%,
    rgba(255, 255, 255, 0.06) 52%,
    rgba(255, 255, 255, 0.02) 62%,
    rgba(255, 255, 255, 0) 100%);
}

/* Engraved rule work, the way a letterhead or a share certificate is ruled. */
.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 100% at 70% 20%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 20%, #000 20%, transparent 78%);
}

.sig { position: relative; max-width: 27rem; color: #ffffff; }

.sig__mark {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 2rem + 5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
/* The accent lives in the mark, so the panel carries brand rather than decoration. */
.sig__mark::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: clamp(18px, 2vw, 26px);
  background: var(--accent);
  border-radius: 2px;
}

.sig__legal {
  margin-top: clamp(22px, 2.4vw, 32px);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sig__line {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.sig__contact {
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: clamp(20px, 2.2vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.sig__contact-key {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.sig__contact-val {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.sig__contact-val:hover { color: #ff9aa8; border-bottom-color: #ff9aa8; }
.sig__contact-val:focus-visible { outline-color: #ff9aa8; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__inner {
    padding-inline: 24px;
    padding-block: clamp(48px, 8vw, 72px);
  }
  .hero__content { max-width: none; }
  .hero__card { padding: 40px 24px; padding-right: 24px; }
  .sig { max-width: none; }
}


/* ---------- Sections ---------- */

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

/* ---------- Capabilities bento ---------- */

.bento {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
  overflow: hidden;
  isolation: isolate;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              transform 0.3s var(--ease);
}
.tile:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
/* A hairline of light along the top edge. Reads as a lit surface rather than
   a rectangle with a border. */
.tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 22%,
    rgba(255, 255, 255, 0.9) 78%, rgba(255, 255, 255, 0) 100%);
}

.tile__body { padding: 32px; }
.tile h3 {
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.tile p {
  color: var(--text-2);
  font-size: 0.9375rem;
  max-width: 46ch;
}

/* cell 1: spans both rows on the left and carries the photo */
.tile--feature { grid-row: span 2; min-height: 400px; }
.tile--feature .tile__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transition: transform 0.7s var(--ease);
}
/* The photo answers the pointer, which is the only motion this tile needs */
.tile--feature:hover .tile__bg { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) {
  .tile--feature .tile__bg { transition: none; }
  .tile--feature:hover .tile__bg { transform: none; }
}
.tile--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.93) 58%, #ffffff 76%);
}

/* cell 3: accent-tinted, gives the grid a second visual register */
.tile--accent {
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(200, 16, 46, 0.10) 0%, rgba(200, 16, 46, 0) 62%),
    linear-gradient(150deg, var(--accent-soft) 0%, #fffafb 76%);
  border-color: var(--accent-line);
}
.tile--accent:hover { border-color: #e6a8b4; }

/* cell 4 closes the grid across the full width, so row three has no hole in it */
.tile--wide { grid-column: 1 / -1; min-height: 0; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
  .tile__body { padding: 24px; }
  /* The tile is short here, so the copy lands higher up the photo. Bring the
     scrim to near-opaque sooner or the heading sits on dark pixels. */
  .tile--feature { grid-row: auto; min-height: 300px; }
  .tile--feature::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.58) 24%, rgba(255, 255, 255, 0.98) 50%, #ffffff 68%);
  }
}

/* ---------- Statement band ---------- */

.statement {
  position: relative;
  border-block: 1px solid var(--accent-line);
  background:
    radial-gradient(70% 130% at 88% 0%, rgba(200, 16, 46, 0.07) 0%, rgba(200, 16, 46, 0) 60%),
    linear-gradient(170deg, var(--accent-soft) 0%, #fffbfc 100%);
  padding-block: clamp(60px, 7.5vw, 100px);
}
.statement__text {
  font-size: clamp(1.35rem, 0.9rem + 1.8vw, 2.35rem);
  line-height: 1.26;
  letter-spacing: -0.024em;
  font-weight: 500;
  max-width: 26ch;
}
.statement__text em {
  font-style: italic;
  color: var(--accent);
  line-height: 1.26;
  padding-bottom: 2px;
}

/* ---------- Sectors ---------- */

/* Wraps into rows on desktop so no sector is hidden past the right edge.
   Only becomes a horizontal scroller once the rows would get too tall. */
.pills {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-inline: max(24px, calc((100vw - var(--shell)) / 2 + 24px));
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
@media (max-width: 767px) {
  .pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
  }
}
.pills li {
  flex: 0 0 auto;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease),
              background-color 0.25s var(--ease);
}
/* Deliberately no :hover here. These are labels, not controls, and a hover
   state on a non-interactive element promises a click that never happens. */
.pills::-webkit-scrollbar { height: 6px; }
.pills::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }

/* ---------- Process rail ---------- */

.rail {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.rail__item {
  border-top: 2px solid var(--accent);
  padding-top: 22px;
}
/* staggered baseline keeps the row from reading as four identical cards */
.rail__item:nth-child(2) { margin-top: 26px; }
.rail__item:nth-child(3) { margin-top: 52px; }
.rail__item:nth-child(4) { margin-top: 78px; }

.rail__item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.rail__item p { color: var(--text-2); font-size: 0.9375rem; }

@media (max-width: 900px) {
  .rail { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .rail__item:nth-child(2) { margin-top: 26px; }
  .rail__item:nth-child(3) { margin-top: 0; }
  .rail__item:nth-child(4) { margin-top: 26px; }
}
@media (max-width: 560px) {
  .rail { grid-template-columns: 1fr; gap: 26px; }
  .rail__item, .rail__item:nth-child(n) { margin-top: 0; }
}

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

.contact { border-top: 1px solid var(--line); background: var(--bg-2); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

/* One route in, so it gets the whole card rather than a row in a list. */
.mailcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow);
}
.mailcard__key {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.mailcard__addr {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  transition: color 0.2s var(--ease);
}
.mailcard__addr:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.mailcard__btn { margin-top: clamp(18px, 2vw, 24px); width: 100%; }
.mailcard__note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-2);
  font-size: 0.9375rem;
}

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

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

.footer {
  border-top: 1px solid var(--line);
  padding-block: 36px;
}
.footer__inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.footer__brand { font-weight: 700; letter-spacing: 0.01em; margin-right: auto; }
.footer__meta { color: var(--muted); font-size: 0.875rem; }
.footer__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.2s var(--ease);
}
.footer__meta a:hover { color: var(--accent); }

/* ---------- Print ---------- */
/* Procurement people print things. Drop the furniture, keep the contact
   details, and spell out where the page actually lives. */
@media print {
  .nav, .tile__bg, .skip { display: none !important; }
  .hero__card { background: #fff !important; padding: 0 0 12pt; }
  .hero__card::before, .hero__card::after { display: none; }
  .sig, .sig__contact-val, .sig__contact-key { color: #000 !important; }
  .sig__line { color: #333 !important; }
  .mailcard { border: 0; box-shadow: none; padding: 0; }
  body { font-size: 11pt; color: #000; background: #fff; }
  .section, .statement, .contact { padding-block: 18pt; border: 0; background: #fff; }
  .hero { display: block; min-height: 0; padding: 0 0 18pt; }
  .hero__inner { padding: 0; display: block; }
  .bento, .rail, .contact__grid { display: block; }
  .tile, .contact__list { border: 0; box-shadow: none; page-break-inside: avoid; }
  .tile__body { padding: 0 0 12pt; }
  .rail__item { margin-top: 0 !important; padding-top: 8pt; }
  .btn { display: none; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after, a[href^="mailto"]::after, a[href^="tel"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #444;
  }
  .footer::after { content: "www.ciclb.com"; display: block; margin-top: 6pt; font-weight: 700; }
}

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}
