/* forsale.kitsapdata.com — one set of tokens, one page anatomy.
   Anatomy (every page): .topbar → .titlerow → optional .chips → content.
   No page invents its own shell. */

:root {
  --ink: #16191f;
  --ink-2: #454d5a;
  --mut: #6b7484;
  --line: #dfe3ea;
  --line-2: #eef1f5;
  --ground: #fbfaf8;
  --card: #ffffff;
  --accent: #1f5fbf;
  --accent-ink: #ffffff;
  --accent-soft: #eef4fd;
  --ok: #16704a;
  --ok-soft: #e7f4ee;
  --warn: #8a5a00;
  --warn-soft: #fdf3de;
  --gone: #6b7484;
  --gone-soft: #f0f1f4;
  --stop: #9b1c1c;
  --stop-soft: #fdeceb;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(16, 20, 28, .05), 0 4px 14px rgba(16, 20, 28, .05);
  --maxw: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eceef2; --ink-2: #b8bfcc; --mut: #8b93a3;
    --line: #2b3038; --line-2: #232830;
    --ground: #14161a; --card: #1b1e24;
    --accent: #6ea8ff; --accent-ink: #10141a; --accent-soft: #1b2634;
    --ok: #6ddcaa; --ok-soft: #16281f;
    --warn: #e5b567; --warn-soft: #2a2216;
    --gone: #8b93a3; --gone-soft: #22262d;
    --stop: #ff9d95; --stop-soft: #2c1b1b;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 20px rgba(0, 0, 0, .3);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 15px/1.55 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

/* ---------------------------------------------------------------- top bar */

.topbar {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .in {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 16px;
}
.brand {
  font-weight: 700; letter-spacing: -.01em; font-size: 16px;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 9px;
}
.brand .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
/* One flat nav. No groups, no "More". */
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink-2); text-decoration: none; font-size: 13.5px; font-weight: 500;
  padding: 6px 10px; border-radius: 7px;
}
.nav a:hover { background: var(--line-2); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--accent-soft); color: var(--accent); }

/* --------------------------------------------------------------- anatomy */

main { max-width: var(--maxw); margin: 0 auto; padding: 26px 20px 72px; }

.titlerow {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  margin: 6px 0 4px;
}
.titlerow h1 { font-size: 26px; line-height: 1.15; margin: 0; letter-spacing: -.02em; }
.titlerow .sub { color: var(--mut); font-size: 13.5px; margin: 3px 0 0; }
.titlerow .acts { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.chips { display: flex; gap: 7px; flex-wrap: wrap; margin: 16px 0 20px; }
.chip {
  border: 1px solid var(--line); background: var(--card); color: var(--ink-2);
  padding: 5px 12px; border-radius: 999px; font-size: 13px; cursor: pointer;
  font-family: inherit; line-height: 1.4;
}
.chip:hover { border-color: var(--mut); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--ground); font-weight: 600; }
.chip .n { opacity: .55; margin-left: 5px; font-variant-numeric: tabular-nums; }

/* -------------------------------------------------------------- controls */
/* Actions are buttons. Navigation is links. Never the reverse. */

.btn {
  font: inherit; font-size: 13.5px; font-weight: 600; line-height: 1.4;
  padding: 8px 14px; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
}
.btn:hover { border-color: var(--mut); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn.primary:hover { filter: brightness(1.07); }
.btn.danger { color: var(--stop); border-color: color-mix(in srgb, var(--stop) 35%, var(--line)); }
.btn.danger:hover { background: var(--stop-soft); }
.btn.sm { padding: 5px 10px; font-size: 12.5px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.lozenge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.lozenge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.lozenge.available { background: var(--ok-soft); color: var(--ok); }
.lozenge.pending   { background: var(--warn-soft); color: var(--warn); }
.lozenge.sold      { background: var(--gone-soft); color: var(--gone); }
.lozenge.draft     { background: var(--accent-soft); color: var(--accent); }

/* ------------------------------------------------------------ catalogue */

.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: transform .12s ease, border-color .12s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--mut); }
.card .shot {
  aspect-ratio: 4 / 3; background: var(--line-2); position: relative; display: block;
}
.card .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .shot .empty {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--mut); font-size: 12.5px;
}
.card .shot .lozenge { position: absolute; left: 10px; top: 10px; background: var(--card); }
.card .shot .count {
  position: absolute; right: 10px; bottom: 10px; font-size: 11.5px; font-weight: 600;
  background: rgba(0,0,0,.62); color: #fff; padding: 2px 7px; border-radius: 999px;
}
.card .meta { padding: 13px 14px 15px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.card .meta h2 { font-size: 15px; margin: 0; line-height: 1.3; letter-spacing: -.01em; }
.card .meta .price { font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin-top: 4px; }
.card .meta .price .pn { font-size: 12px; font-weight: 600; color: var(--mut); margin-left: 5px; }
.card .meta .where { font-size: 12.5px; color: var(--mut); margin-top: auto; padding-top: 8px; }
.card.is-sold .shot img { filter: grayscale(1); opacity: .62; }

/* --------------------------------------------------------------- listing */

/* Two columns on a desktop, one on a phone — and on the phone the PRICE follows
   the photos instead of sitting below the whole description.
   Every child gets min-width:0. A grid item defaults to min-width:auto, which
   means it refuses to shrink below its content's min-content width; the photo
   thumbnail strip is ~1090px of min-content, and without this it widens the
   page instead of scrolling inside itself. That was the mobile bug. */
/* The right column FLOWS: price, then the spec table directly under it, with
   the gallery spanning both rows beside them and the description full width
   below. Measured before this: the price box is 194px tall next to a 976px
   gallery, and specs did not start until the prose row — leaving 809px of empty
   right column at eye level, and 662px more below it, on a 2641px page. Roughly
   half the page's most valuable real estate was white.
   Mobile keeps its own order (see the 860px block) — there, a 16-row spec table
   between the price and the description would push the story off the screen. */
.detail {
  display: grid; align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .8fr);
  grid-template-areas: "gallery buy" "gallery specs" "prose prose";
  column-gap: 34px; row-gap: 26px;
}
.detail > * { min-width: 0; }
.detail .g-gallery { grid-area: gallery; }
.detail .g-buy     { grid-area: buy; }
.detail .g-prose   { grid-area: prose; }
.detail .g-specs   { grid-area: specs; }

@media (max-width: 860px) {
  .detail {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "gallery" "buy" "prose" "specs";
    row-gap: 22px;
  }
}

/* contain, not cover: a 32 ft trailer loses both ends to a 4:3 crop, and a
   buyer is here to see the whole thing. Cards keep `cover` — there the photo
   is a thumbnail, here it is the item. */
/* `height: auto` is load-bearing. An <img> width/height ATTRIBUTE maps to a
   presentational height, and an explicit height beats `aspect-ratio` — so the
   box took each photo's pixel height instead of 4:3. Two symptoms, one cause:
   the hero letterboxed with big empty bands, and every photo change resized the
   box, moved the document height and shoved the page around under the reader. */
.gallery .hero {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--line-2); display: block;
}
.gallery .thumbs {
  display: flex; gap: 8px; margin-top: 10px; padding-bottom: 4px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity; scrollbar-width: thin;
}
.gallery .thumbs button { scroll-snap-align: start; }
.gallery .thumbs button {
  flex: 0 0 auto; width: 82px; height: 62px; padding: 0; cursor: pointer;
  border: 2px solid transparent; border-radius: 7px; overflow: hidden; background: var(--line-2);
}
.gallery .thumbs button[aria-current="true"] { border-color: var(--accent); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pricebox {
  border: 1px solid var(--line); background: var(--card); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow);
}
.pricebox .price { font-size: 30px; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.pricebox .price .pn { font-size: 14px; font-weight: 600; color: var(--mut); margin-left: 7px; }
.pricebox .row { display: flex; gap: 10px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.pricebox dl { margin: 14px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 7px 14px; font-size: 13.5px; }
.pricebox dt { color: var(--mut); }
.pricebox dd { margin: 0; text-align: right; }

.sechead {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent);
  margin: 0 0 8px;
}
.g-specs .sechead + .speclist + .sechead { margin-top: 22px; }
.speclist { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.speclist .r { display: flex; gap: 14px; padding: 7px 14px; font-size: 13.5px; border-bottom: 1px solid var(--line-2); }
.speclist .r:last-child { border-bottom: 0; }
.speclist .r .k { color: var(--mut); flex: 0 0 44%; }
.speclist .r .v { font-weight: 600; }

.prose { max-width: 68ch; }
.prose, .speclist, .pricebox { overflow-wrap: anywhere; }
.prose h3 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent);
  margin: 26px 0 8px;
}
.prose p { margin: 0 0 11px; color: var(--ink-2); }
.prose ul { margin: 0 0 12px; padding-left: 19px; color: var(--ink-2); }
.prose li { margin: 4px 0; }

/* ----------------------------------------------------------------- forms */
/* Condensed, two-column, label beside input. Editable looks editable. */

.form { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 10px 14px; align-items: start; }
.form > label { font-size: 13px; color: var(--mut); padding-top: 8px; }
.form .full { grid-column: 1 / -1; }
input[type=text], input[type=number], input[type=url], select, textarea {
  font: inherit; font-size: 14px; width: 100%;
  padding: 7px 10px; border-radius: 7px;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: var(--accent); }
textarea { min-height: 200px; resize: vertical; line-height: 1.6; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.hint { font-size: 12.5px; color: var(--mut); margin: 3px 0 0; }

/* ---------------------------------------------------------------- states */

.note { border-radius: 9px; padding: 11px 14px; font-size: 13.5px; margin: 14px 0; border: 1px solid; }
.note.err { background: var(--stop-soft); border-color: color-mix(in srgb, var(--stop) 30%, transparent); color: var(--stop); }
.note.ok  { background: var(--ok-soft);   border-color: color-mix(in srgb, var(--ok) 30%, transparent);   color: var(--ok); }
.note.info{ background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 25%, transparent); color: var(--accent); }

.empty-state {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 48px 24px;
  text-align: center; color: var(--mut); background: var(--card);
}
.empty-state h2 { color: var(--ink); font-size: 17px; margin: 0 0 6px; }

footer.foot {
  border-top: 1px solid var(--line); margin-top: 48px;
  color: var(--mut); font-size: 12.5px;
}
footer.foot .in { max-width: var(--maxw); margin: 0 auto; padding: 18px 20px; display: flex; gap: 14px; flex-wrap: wrap; }
footer.foot a { color: var(--mut); }

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


/* ------------------------------------------------------------------ phones */
/* Everything below 640px. Tap targets get to 40px, the two-column form becomes
   one column, and the dense admin table becomes stacked cards — a 5-column grid
   at 390px is a horizontal scrollbar, not a table. */

@media (max-width: 640px) {
  main { padding: 18px 16px 56px; }
  .topbar .in { padding: 10px 16px; gap: 10px; }
  .titlerow h1 { font-size: 21px; }
  .titlerow { align-items: flex-start; }
  .titlerow .acts { margin-left: 0; width: 100%; }
  .titlerow .acts .btn { flex: 1 1 auto; justify-content: center; }

  .nav a { min-height: 40px; display: flex; align-items: center; }
  .btn { min-height: 40px; padding: 9px 14px; }
  .btn.sm { min-height: 40px; }
  .chip { min-height: 40px; padding: 8px 14px; }

  .grid { grid-template-columns: 1fr; gap: 16px; }

  .pricebox .price { font-size: 26px; }
  .gallery .thumbs button { width: 68px; height: 52px; }

  /* Forms: label above input, full width. */
  .form { grid-template-columns: 1fr; gap: 4px 0; }
  .form > label { padding-top: 12px; }
  .form > div > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .pair { grid-template-columns: 1fr; gap: 5px; padding-bottom: 10px; border-bottom: 1px solid var(--line-2); }
  textarea { min-height: 260px; }
  input[type=text], input[type=number], input[type=url], input[type=password], select { min-height: 44px; }
}

@media (max-width: 560px) {
  /* The manage list stops being a table and becomes one card per listing. */
  .rows .row {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas: "thumb title" "price price" "status status" "acts acts";
    row-gap: 8px; padding: 12px;
  }
  .rows .row.head { display: none; }
  .rows .row .thumb { grid-area: thumb; }
  .rows .row .t { grid-area: title; white-space: normal; }
  .rows .row .num { grid-area: price; }
  .rows .row > span:nth-child(4) { display: none; }   /* category — on the editor */
  .rows .row .acts { grid-area: acts; justify-content: flex-start; }
  .rows .row .acts .btn { flex: 1 1 0; justify-content: center; }
}

/* ------------------------------------------------------------- gallery ctrls
   The hero is `contain` on purpose, so the controls sit ON it rather than
   beside it: the photo box is a fixed 4:3 and the leftover letterbox is dead
   space anyway. Every control is 44px on its short edge — the mobile gate
   fails anything under 40. */
.gallery .stage { position: relative; }
.gallery .hero { cursor: zoom-in; }

.gallery .gnav,
.gallery .gexpand,
.gallery .gplay {
  position: absolute; z-index: 2;
  display: grid; place-items: center;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  background: color-mix(in srgb, var(--card) 82%, transparent);
  backdrop-filter: blur(6px) saturate(1.4);
  color: var(--ink); cursor: pointer; padding: 0;
  border-radius: 999px; box-shadow: var(--shadow);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}
.gallery .gnav:hover,
.gallery .gexpand:hover,
.gallery .gplay:hover { border-color: var(--mut); transform: translateY(-50%) scale(1.04); }
.gallery .gexpand:hover, .gallery .gplay:hover { transform: scale(1.04); }

.gallery .gnav {
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; font-size: 24px; line-height: 1;
}
.gallery .gnav.prev { left: 10px; }
.gallery .gnav.next { right: 10px; }

.gallery .gexpand { right: 10px; bottom: 10px; width: 44px; height: 44px; font-size: 17px; }
.gallery .gplay   { left: 10px;  bottom: 10px; width: 44px; height: 44px; font-size: 13px; }

.gallery .gcount {
  position: absolute; z-index: 2; left: 50%; bottom: 14px; transform: translateX(-50%);
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  padding: 5px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  backdrop-filter: blur(6px); color: var(--ink-2);
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}

/* Pointer-fine screens get the arrows on hover; touch screens keep them
   permanently, because there is no hover to reveal them with. */
@media (hover: hover) and (pointer: fine) {
  .gallery .gnav { opacity: 0; }
  .gallery:hover .gnav, .gallery .gnav:focus-visible { opacity: 1; }
}

/* ----------------------------------------------------------------- viewer */

body.lb-open { overflow: hidden; }

.lbox {
  position: fixed; inset: 0; z-index: 100;
  display: grid; grid-template-rows: auto 1fr auto;
  /* Opaque. At .94 the sticky topbar underneath was legible THROUGH the
     viewer — "For Sale" and the nav sitting over the photo. */
  background: #0a0c10;
  overscroll-behavior: contain; touch-action: none;
  --lb-ink: #f2f4f7;
  --lb-chrome: rgba(255, 255, 255, .1);
}
.lbox[hidden] { display: none; }

.lbstage {
  grid-row: 2; position: relative; overflow: hidden; min-height: 0;
}
/* absolute + inset:0 + margin:auto, NOT a centred grid item. As a grid item the
   image ignored `max-height: 100%` entirely and laid out at its natural 1200x900
   inside a 718px-tall stage, so every photo was cropped at the bottom — the
   wheels came off the trailer. Absolute positioning gives the percentages a
   definite containing block, and margin:auto still centres both axes. */
.lbimg {
  position: absolute; inset: 0; margin: auto;
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
  transform-origin: center center; will-change: transform;
  -webkit-user-select: none; user-select: none; -webkit-user-drag: none;
}
.lbimg.zoomed { cursor: grab; }
.lbimg.grabbing { cursor: grabbing; }

.lbbar {
  grid-row: 1; display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; color: var(--lb-ink);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent);
  transition: opacity .25s ease;
}
.lbspacer { flex: 1 1 auto; }
.lbcount, .lbzoom { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.lbzoom { color: #9fb4d8; }

.lbbtn {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: grid; place-items: center;
  border: 1px solid var(--lb-chrome); border-radius: 999px;
  background: rgba(255, 255, 255, .07); color: var(--lb-ink);
  font-size: 16px; font-family: inherit; cursor: pointer; padding: 0;
  transition: background .15s ease, border-color .15s ease;
}
.lbbtn:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .3); }
.lbplay[aria-pressed="true"] { background: rgba(255, 255, 255, .18); }

.lbnav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 1px solid var(--lb-chrome); border-radius: 999px;
  background: rgba(20, 22, 28, .55); color: var(--lb-ink);
  font-size: 30px; line-height: 1; cursor: pointer; padding: 0 0 3px;
  transition: background .15s ease, opacity .25s ease;
}
.lbnav:hover { background: rgba(40, 44, 54, .8); }
.lbnav.prev { left: 12px; }
.lbnav.next { right: 12px; }

.lbstrip {
  grid-row: 3; display: flex; gap: 8px; justify-content: flex-start;
  padding: 10px 12px 14px; overflow-x: auto; min-width: 0;
  scroll-snap-type: x proximity; scrollbar-width: thin;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
  transition: opacity .25s ease;
}
.lbstrip button {
  flex: 0 0 auto; width: 72px; height: 54px; padding: 0; cursor: pointer;
  border: 2px solid transparent; border-radius: 7px; overflow: hidden;
  background: #24272e; opacity: .55; scroll-snap-align: center;
  transition: opacity .15s ease, border-color .15s ease;
}
.lbstrip button:hover { opacity: .85; }
.lbstrip button[aria-current="true"] { opacity: 1; border-color: #6ea8ff; }
.lbstrip img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* The caption lands ON the photo — a shadow is not enough over gravel or a
   pale wall, so it gets its own plate. */
.lbalt {
  position: absolute; left: 0; right: 0; bottom: 88px; margin: 0;
  text-align: center; pointer-events: none; transition: opacity .25s ease;
  padding: 0 16px; line-height: 0;
}
.lbalt:empty { display: none; }
.lbalt span {
  display: inline-block; line-height: 1.4;
  font-size: 12.5px; color: #dbe3ef;
  background: rgba(10, 12, 16, .72); border: 1px solid rgba(255, 255, 255, .08);
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}

/* Controls step aside after 3s of stillness — the photo is the point. Any
   pointer move, key or tap brings them back. */
.lbox.idle .lbbar,
.lbox.idle .lbstrip,
.lbox.idle .lbnav,
.lbox.idle .lbalt { opacity: 0; }
.lbox.idle .lbbar:focus-within,
.lbox.idle .lbstrip:focus-within { opacity: 1; }

@media (max-width: 620px) {
  .lbnav { width: 44px; height: 44px; font-size: 24px; }
  .lbstrip button { width: 60px; height: 45px; }
  .lbalt { bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery .gnav, .gallery .gexpand, .gallery .gplay,
  .lbbar, .lbstrip, .lbnav, .lbalt, .lbbtn, .lbstrip button { transition: none; }
}
