/* =============================================================================
   CAELUM — base layer
   Derived tokens · reset · type scale · utilities · layout primitives

   THERE ARE NO HEX CODES IN THIS FILE, and there must never be. Every colour
   role is printed as a custom property by inc/design-system.php and injected
   right after this stylesheet, so an operator's palette choice reaches the page
   without a single rule here changing. Anything this file needs that is not a
   role — a hairline at 50% opacity, a hover shade, a scrim — is DERIVED from a
   role with color-mix(), which is what keeps "primary" and "primary hover" from
   drifting apart the first time someone edits one of them.

   Type and spacing are applied as classes ON the markup
   (`<h2 class="display fs-d2 fw-300 lh-11">`), never baked into a component
   rule — change .fs-d2 once and every section title follows, and no
   component/utility specificity fight is possible.

   theme.css owns the other half: component structure (display/grid/position)
   and colour. It must never declare font-* or line-height.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. Derived tokens + system constants

   color-mix() is Chrome 111 / Safari 16.2 / Firefox 113 (all 2023). Each mixed
   value is preceded by a plain fallback built from a role, so an older engine
   still gets a correct colour — just an unmixed one.
   -------------------------------------------------------------------------- */

:root {
  /* — Hairlines and fills derived from the ink/line roles. */
  --cl-line-soft:   var(--cl-line);
  --cl-line-soft:   color-mix(in srgb, var(--cl-line) 55%, transparent);
  --cl-line-strong: var(--cl-muted);
  --cl-line-strong: color-mix(in srgb, var(--cl-ink) 30%, transparent);
  --cl-line-inv:    var(--cl-inverse-muted);
  --cl-line-inv:    color-mix(in srgb, var(--cl-inverse-ink) 22%, transparent);
  --cl-fill-soft:   var(--cl-surface-alt);
  --cl-fill-soft:   color-mix(in srgb, var(--cl-ink) 4%, transparent);

  /* — Interaction shades. A hover is the same colour walked toward the ink,
       never a different colour, so identity survives every override. */
  --cl-btn-hover:      var(--cl-primary);
  --cl-btn-hover:      color-mix(in srgb, var(--cl-btn) 84%, var(--cl-ink));
  --cl-primary-hover:  var(--cl-ink);
  --cl-primary-hover:  color-mix(in srgb, var(--cl-primary) 84%, var(--cl-ink));
  --cl-accent-soft:    var(--cl-secondary);
  --cl-accent-soft:    color-mix(in srgb, var(--cl-accent) 18%, transparent);

  /* — Scrims for type over photography. Built from the inverse band, so a dark
       palette scrims with its own black rather than an imported one. */
  --cl-scrim:      color-mix(in srgb, var(--cl-inverse-bg) 62%, transparent);
  --cl-scrim-soft: color-mix(in srgb, var(--cl-inverse-bg) 34%, transparent);
  --cl-scrim-grad: linear-gradient(
    to top,
    color-mix(in srgb, var(--cl-inverse-bg) 78%, transparent) 0%,
    color-mix(in srgb, var(--cl-inverse-bg) 42%, transparent) 38%,
    transparent 78%
  );

  /* — Measure and width. */
  --cl-max:     1440px;
  --cl-wide:    1720px;
  --cl-narrow:  740px;
  --cl-measure: 68ch;

  /* — Motion. One curve for the whole theme: a long decelerating tail, the way
       a heavy door closes. Duration is generous because luxury is unhurried. */
  --cl-ease:     cubic-bezier(.22, .61, .36, 1);
  --cl-ease-in:  cubic-bezier(.55, .06, .68, .19);
  --cl-dur:      .72s;
  --cl-dur-mid:  .42s;
  --cl-dur-fast: .22s;

  --cl-header-h: 80px;
  --cl-topbar-h: 0px;
}

/* -----------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cl-header-h) + 24px);
}

body {
  margin: 0;
  background: var(--cl-bg);
  color: var(--cl-ink);
  font-family: var(--cl-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; border-style: none; }

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

button, input, select, textarea { font: inherit; color: inherit; margin: 0; }
button { background: none; border: 0; padding: 0; cursor: pointer; }

table { border-collapse: collapse; width: 100%; }

hr { border: 0; border-top: 1px solid var(--cl-line); margin: 0; }

/* Visible focus is a hard accessibility floor (EAA, in force since 2025-06-28).
   Never remove it without replacing it with something at least as loud. */
:focus-visible {
  outline: 2px solid var(--cl-accent);
  outline-offset: 3px;
  border-radius: var(--cl-radius-sm);
}
.on-inverse :focus-visible,
.cl-inverse :focus-visible { outline-color: var(--cl-inverse-accent); }

::selection { background: var(--cl-accent); color: var(--cl-btn-ink); }

/* -----------------------------------------------------------------------------
   3. Type families & scale
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--cl-display);
  font-optical-sizing: auto;
  letter-spacing: var(--cl-display-ls);
  text-transform: var(--cl-display-case);
}
.sans { font-family: var(--cl-sans); }

/* Fluid display scale. clamp() replaces almost every breakpoint override —
   the `md-`/`sm-` type utilities below exist only for the handful of places
   where the fluid curve is right for the headline but wrong for its neighbour. */
.fs-d1 { font-size: clamp(44px, 8.4vw, 124px); }
.fs-d2 { font-size: clamp(34px, 5.6vw,  78px); }
.fs-d3 { font-size: clamp(27px, 3.8vw,  52px); }
.fs-d4 { font-size: clamp(22px, 2.7vw,  36px); }
.fs-d5 { font-size: clamp(19px, 2.0vw,  27px); }

/* Fixed UI scale. */
.fs-11 { font-size: 11px; } .fs-12 { font-size: 12px; } .fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; } .fs-15 { font-size: 15px; } .fs-16 { font-size: 16px; }
.fs-17 { font-size: 17px; } .fs-18 { font-size: 18px; } .fs-20 { font-size: 20px; }
.fs-22 { font-size: 22px; } .fs-24 { font-size: 24px; } .fs-28 { font-size: 28px; }
.fs-32 { font-size: 32px; } .fs-36 { font-size: 36px; } .fs-40 { font-size: 40px; }
.fs-48 { font-size: 48px; } .fs-56 { font-size: 56px; } .fs-72 { font-size: 72px; }

.fw-200 { font-weight: 200; } .fw-300 { font-weight: 300; } .fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; } .fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; }

.lh-09 { line-height: .92; } .lh-10 { line-height: 1.02; } .lh-11 { line-height: 1.10; }
.lh-12 { line-height: 1.20; } .lh-13 { line-height: 1.32; } .lh-14 { line-height: 1.42; }
.lh-15 { line-height: 1.54; } .lh-16 { line-height: 1.66; } .lh-17 { line-height: 1.78; }

.ls-tight { letter-spacing: -.03em; } .ls-0 { letter-spacing: 0; }
.ls-1 { letter-spacing: .06em; } .ls-2 { letter-spacing: .14em; } .ls-3 { letter-spacing: .24em; }

.uppercase { text-transform: uppercase; }
.italic    { font-style: italic; }
.ta-left { text-align: left; } .ta-center { text-align: center; } .ta-right { text-align: right; }
.balance { text-wrap: balance; }
.pretty  { text-wrap: pretty; }
.measure { max-width: var(--cl-measure); }
.measure-sm { max-width: 48ch; }
.nowrap { white-space: nowrap; }

/* The eyebrow — Caelum's most repeated typographic unit, and a compound of five
   properties that must not drift apart, so it stays one class. */
.eyebrow {
  font-family: var(--cl-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

/* A number set in the display face, used for section indices and statistics.
   Tabular figures so a column of them lines up. */
.numeral {
  font-family: var(--cl-display);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0;
}

/* -----------------------------------------------------------------------------
   4. Colour utilities
   -------------------------------------------------------------------------- */

.c-ink     { color: var(--cl-ink); }
.c-muted   { color: var(--cl-muted); }
.c-accent  { color: var(--cl-accent-ink); }
.c-metal   { color: var(--cl-accent); }
.c-onprim  { color: var(--cl-primary-ink); }
.c-inherit { color: inherit; }

/* Inside an inverse band every text colour flips. Declaring it once here stops
   seventeen section partials from restating four colour rules each. */
.on-inverse            { color: var(--cl-inverse-ink); }
.on-inverse .c-ink     { color: var(--cl-inverse-ink); }
.on-inverse .c-muted   { color: var(--cl-inverse-muted); }
.on-inverse .c-accent  { color: var(--cl-inverse-accent); }
.on-inverse .c-metal   { color: var(--cl-inverse-accent); }

/* Type over a photograph. Same flip, but the colours are fixed to the inverse
   band rather than the palette's ink — a photo is dark under the scrim
   regardless of which palette is active. */
.on-photo           { color: var(--cl-inverse-ink); }
.on-photo .c-ink    { color: var(--cl-inverse-ink); }
.on-photo .c-muted  { color: var(--cl-inverse-muted); }
.on-photo .c-accent,
.on-photo .c-metal  { color: var(--cl-inverse-accent); }

/* -----------------------------------------------------------------------------
   5. Spacing utilities (4px base, named by px so the value reads in the markup)
   -------------------------------------------------------------------------- */

.mt-0 { margin-top: 0; }     .mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 4px; }   .mb-4 { margin-bottom: 4px; }
.mt-8 { margin-top: 8px; }   .mb-8 { margin-bottom: 8px; }
.mt-12 { margin-top: 12px; } .mb-12 { margin-bottom: 12px; }
.mt-16 { margin-top: 16px; } .mb-16 { margin-bottom: 16px; }
.mt-20 { margin-top: 20px; } .mb-20 { margin-bottom: 20px; }
.mt-24 { margin-top: 24px; } .mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; } .mb-32 { margin-bottom: 32px; }
.mt-40 { margin-top: 40px; } .mb-40 { margin-bottom: 40px; }
.mt-48 { margin-top: 48px; } .mb-48 { margin-bottom: 48px; }
.mt-64 { margin-top: 64px; } .mb-64 { margin-bottom: 64px; }
.mt-80 { margin-top: 80px; } .mb-80 { margin-bottom: 80px; }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gap-0 { gap: 0; }     .gap-4 { gap: 4px; }   .gap-8 { gap: 8px; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-20 { gap: 20px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-40 { gap: 40px; }
.gap-48 { gap: 48px; } .gap-64 { gap: 64px; } .gap-80 { gap: 80px; }

.p-0 { padding: 0; }   .p-16 { padding: 16px; } .p-20 { padding: 20px; }
.p-24 { padding: 24px; } .p-32 { padding: 32px; } .p-40 { padding: 40px; }
.p-48 { padding: 48px; } .p-64 { padding: 64px; }
.pt-24 { padding-top: 24px; } .pb-24 { padding-bottom: 24px; }
.pt-32 { padding-top: 32px; } .pb-32 { padding-bottom: 32px; }
.pt-48 { padding-top: 48px; } .pb-48 { padding-bottom: 48px; }
.pt-64 { padding-top: 64px; } .pb-64 { padding-bottom: 64px; }

/* -----------------------------------------------------------------------------
   6. Layout primitives
   -------------------------------------------------------------------------- */

.container,
.container-wide,
.container-narrow {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--cl-gutter);
}
.container        { max-width: calc(var(--cl-max) + var(--cl-gutter) * 2); }
.container-wide   { max-width: var(--cl-wide); }
.container-narrow { max-width: calc(var(--cl-narrow) + var(--cl-gutter) * 2); }

.section    { padding-block: var(--cl-section); }
.section-sm { padding-block: calc(var(--cl-section) * .56); }
.section-lg { padding-block: calc(var(--cl-section) * 1.3); }
.section-t0 { padding-top: 0; }
.section-b0 { padding-bottom: 0; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

.column { flex-direction: column; }
.wrap   { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.order-1 { order: 1; } .order-2 { order: 2; }

.cols-1 { grid-template-columns: minmax(0, 1fr); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* The asymmetric splits Caelum leans on. A 50/50 is a spreadsheet, not a composition. */
.cols-5-7 { grid-template-columns: 5fr 7fr; }
.cols-7-5 { grid-template-columns: 7fr 5fr; }
.cols-4-8 { grid-template-columns: 4fr 8fr; }
.cols-8-4 { grid-template-columns: 8fr 4fr; }
.cols-3-9 { grid-template-columns: 3fr 9fr; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.z-1 { z-index: 1; } .z-2 { z-index: 2; } .z-3 { z-index: 3; }

.justify-items-center { justify-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.of-hidden { overflow: hidden; }

/* Named composition widths. These exist so a template never needs a one-off
   `style="max-width:…"`, which is how a measure quietly drifts between two
   sections that were meant to hold the same line length. */
.w-xs { max-width: 460px; }
.w-sm { max-width: 680px; }
.w-md { max-width: 760px; }
.w-lg { max-width: 900px; }

/* Hairlines as utilities. Caelum draws edges rather than shadowing them, so a
   rule is needed often enough to earn a class — and putting it here keeps a
   one-off `style="border-top:…"` out of the templates. */
.rule-top    { border-top: 1px solid var(--cl-line-soft); }
.rule-bottom { border-bottom: 1px solid var(--cl-line-soft); }
.rule-all    { border: 1px solid var(--cl-line); }

/* Aspect ratios. Every media box declares one, so images reserve their space
   and the page contributes no layout shift. */
.ar-21-9 { aspect-ratio: 21 / 9; }
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-3-2  { aspect-ratio: 3 / 2; }
.ar-4-3  { aspect-ratio: 4 / 3; }
.ar-1-1  { aspect-ratio: 1 / 1; }
.ar-4-5  { aspect-ratio: 4 / 5; }
.ar-5-7  { aspect-ratio: 5 / 7; }
.ar-2-3  { aspect-ratio: 2 / 3; }
.ar-9-16 { aspect-ratio: 9 / 16; }

/*
 * The content-photograph primitive. Every photograph in Caelum is a real <img>
 * carrying this class inside a position:relative parent — never a CSS
 * background-image, which cannot be preloaded, carries no alt text, gets no
 * srcset and is invisible to the LCP heuristic. (DESIGN.md §4.1 — locked.)
 */
.cl-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: inherit;
}

/*
 * The aperture — Caelum's signature. A window arched at the head and cut square
 * at the sill: the shape of an opening you look at the sky through, and the one
 * decorative move the theme makes. It is a single token, so an operator who
 * turns the arch off in the Customizer gets the theme's corner radius here
 * instead of a half-applied motif.
 */
.cl-aperture {
  position: relative;
  overflow: hidden;
  border-radius: var(--cl-arch);
  background: var(--cl-surface-alt);
}
.cl-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--cl-radius);
  background: var(--cl-surface-alt);
}

/*
 * The empty aperture. Emitted by caelum_cover() when a section has no photograph
 * yet, so the theme's signature opening reads as deliberately empty rather than
 * as a broken block — the mark is the same four-point star as the wordmark.
 */
.cl-cover--empty {
  background: linear-gradient(158deg, var(--cl-surface-alt), var(--cl-surface));
}
.cl-cover--empty::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background: var(--cl-line-strong);
  transform: rotate(45deg);
  opacity: .55;
}

/* Slow continuous scale under the cursor — the only image motion in the theme. */
.cl-zoom { overflow: hidden; }
.cl-zoom .cl-cover {
  transition: transform 1.4s var(--cl-ease);
  will-change: transform;
}
.cl-zoom:hover .cl-cover,
.cl-zoom:focus-within .cl-cover { transform: scale(1.05); }

/* Screen-reader-only text that stays reachable by keyboard. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------------------------
   7. Responsive overrides

   Desktop-first, matching the fleet convention: the base class is the large
   value, `lg-` applies at ≤1180px, `md-` at ≤1024px, `sm-` at ≤640px. Scoped
   with :where() so a utility can never out-specify a component rule by accident.
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  :where(.lg-cols-1) { grid-template-columns: minmax(0, 1fr); }
  :where(.lg-cols-2) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  :where(.lg-cols-3) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  :where(.lg-hidden) { display: none; }
  :where(.lg-gap-24) { gap: 24px; }
  :where(.lg-gap-32) { gap: 32px; }
}

@media (max-width: 1024px) {
  :root { --cl-header-h: 68px; }

  :where(.md-cols-1) { grid-template-columns: minmax(0, 1fr); }
  :where(.md-cols-2) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  :where(.md-column) { flex-direction: column; }
  :where(.md-hidden) { display: none; }
  :where(.md-block)  { display: block; }
  :where(.md-flex)   { display: flex; }
  :where(.md-w-full) { width: 100%; }
  :where(.md-ta-left) { text-align: left; }
  :where(.md-ta-center) { text-align: center; }
  :where(.md-items-start) { align-items: flex-start; }
  :where(.md-order-1) { order: 1; }
  :where(.md-order-2) { order: 2; }

  :where(.md-fs-13) { font-size: 13px; } :where(.md-fs-14) { font-size: 14px; }
  :where(.md-fs-15) { font-size: 15px; } :where(.md-fs-16) { font-size: 16px; }
  :where(.md-fs-18) { font-size: 18px; } :where(.md-fs-20) { font-size: 20px; }
  :where(.md-fs-24) { font-size: 24px; } :where(.md-fs-28) { font-size: 28px; }
  :where(.md-fs-32) { font-size: 32px; }

  :where(.md-gap-16) { gap: 16px; } :where(.md-gap-24) { gap: 24px; }
  :where(.md-gap-32) { gap: 32px; } :where(.md-gap-40) { gap: 40px; }
  :where(.md-mb-16) { margin-bottom: 16px; } :where(.md-mb-24) { margin-bottom: 24px; }
  :where(.md-mb-32) { margin-bottom: 32px; } :where(.md-mb-48) { margin-bottom: 48px; }
  :where(.md-mt-16) { margin-top: 16px; }    :where(.md-mt-24) { margin-top: 24px; }
  :where(.md-p-24) { padding: 24px; } :where(.md-p-32) { padding: 32px; }
  :where(.md-ar-4-3) { aspect-ratio: 4 / 3; }
  :where(.md-ar-16-9) { aspect-ratio: 16 / 9; }

  /* Asymmetric splits collapse to one column everywhere. */
  :where(.cols-5-7, .cols-7-5, .cols-4-8, .cols-8-4, .cols-3-9) {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  :where(.sm-cols-1) { grid-template-columns: minmax(0, 1fr); }
  :where(.sm-cols-2) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  :where(.sm-hidden) { display: none; }
  :where(.sm-block)  { display: block; }
  :where(.sm-column) { flex-direction: column; }
  :where(.sm-ta-left) { text-align: left; }
  :where(.sm-ta-center) { text-align: center; }
  :where(.sm-items-start) { align-items: flex-start; }
  :where(.sm-w-full) { width: 100%; }

  :where(.sm-fs-12) { font-size: 12px; } :where(.sm-fs-13) { font-size: 13px; }
  :where(.sm-fs-14) { font-size: 14px; } :where(.sm-fs-15) { font-size: 15px; }
  :where(.sm-fs-16) { font-size: 16px; } :where(.sm-fs-18) { font-size: 18px; }
  :where(.sm-fs-20) { font-size: 20px; } :where(.sm-fs-24) { font-size: 24px; }
  :where(.sm-fs-28) { font-size: 28px; }

  :where(.sm-gap-8) { gap: 8px; }   :where(.sm-gap-12) { gap: 12px; }
  :where(.sm-gap-16) { gap: 16px; } :where(.sm-gap-24) { gap: 24px; }
  :where(.sm-gap-32) { gap: 32px; }
  :where(.sm-mb-12) { margin-bottom: 12px; } :where(.sm-mb-16) { margin-bottom: 16px; }
  :where(.sm-mb-24) { margin-bottom: 24px; } :where(.sm-mb-32) { margin-bottom: 32px; }
  :where(.sm-p-16) { padding: 16px; } :where(.sm-p-20) { padding: 20px; }
  :where(.sm-p-24) { padding: 24px; }
  :where(.sm-ar-4-3) { aspect-ratio: 4 / 3; }
  :where(.sm-ar-1-1) { aspect-ratio: 1 / 1; }
  :where(.sm-ar-4-5) { aspect-ratio: 4 / 5; }

  :where(.cols-2, .cols-3, .cols-4) { grid-template-columns: minmax(0, 1fr); }
}

/* -----------------------------------------------------------------------------
   8. Reduced motion

   Honoured globally rather than per component. A partial implementation is worse
   than none, because the visitor cannot predict which parts of the page will
   still move. (EAA.)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .cl-zoom:hover .cl-cover,
  .cl-zoom:focus-within .cl-cover { transform: none; }
}

/* The same switch, thrown from the Customizer rather than the operating system,
   for an operator who wants a still site regardless of visitor settings. */
.cl-no-motion *,
.cl-no-motion *::before,
.cl-no-motion *::after {
  animation-duration: .001ms !important;
  transition-duration: .001ms !important;
}
.cl-no-motion .cl-zoom:hover .cl-cover { transform: none; }
