/* product-shots.css — figures for rendered product imagery.
   Kept separate from focus.css so the whole feature can be removed by deleting
   one <link> and this file.

   Markup contract:
     <figure class="shot">          optional .shot--wide for full-width shots
       <img src="…webp" alt="…" loading="lazy" decoding="async" width="…" height="…">
       <figcaption>…</figcaption>   optional
     </figure>
*/

.shot {
  margin: 26px 0 0;
  padding: 0;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  /* match the site's hairline + a soft lift so shots sit on the canvas */
  border: 1px solid var(--hair, rgba(47, 54, 61, .08));
  box-shadow: 0 18px 40px -26px rgba(15, 18, 22, .38);
  background: var(--surface, #fff);
}

.shot figcaption {
  margin-top: 11px;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--muted, #6B737A);
}

/* A status chip for images that depict something still being finished.
   Used so a rendered screen never implies a capability that is not live yet. */
.shot figcaption .state {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-deep, #8A6A2E);
  background: var(--accent-soft, rgba(182, 141, 64, .08));
  border: 1px solid rgba(182, 141, 64, .28);
  border-radius: 5px;
  padding: 2px 7px;
  margin-right: 8px;
  vertical-align: 1px;
}

/* Phone-style shot: constrain width so a portrait mockup does not dominate. */
.shot--phone {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

/* Side-by-side pairing used on the wide pages. */
.shot-row {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
@media (min-width: 860px) {
  .shot-row {
    grid-template-columns: 1fr 1fr;
  }
  .shot-row .shot {
    margin-top: 0;
  }
}

/* Dark canvas support — site-chrome defines a dark token set too. */
@media (prefers-color-scheme: dark) {
  .shot img {
    border-color: var(--hair, rgba(246, 241, 232, .12));
    background: var(--surface, #161A1E);
    box-shadow: 0 18px 40px -26px rgba(0, 0, 0, .6);
  }
}
