/* ─────────────────────────────────────────────────────────────
   Identity taken from the product, not invented for the page.

   · Ground, card, border and text are the app's own tokens
     (servicebuilt-desktop/src/index.css).
   · Display face is Poppins Bold Italic — the face the ServiceBuilt
     wordmark is actually set in. The site and the logo now agree.
   · The recurring structural device is the ROOF ANGLE off the logo's
     gable, reused as the section rule and the hero's dispatch-board
     rake. It encodes the subject rather than decorating it.

   Committed dark, single theme: the product is dark, and a light
   marketing page in front of a dark app reads as two companies.
   Every colour is painted explicitly so the page holds on any host
   ground.
   ───────────────────────────────────────────────────────────── */
:root {
  --bg:      #05070C;
  --bg-lift: #080B12;
  --card:    #10141B;
  --card-hi: #161C26;
  --border:  #1E2531;
  --text:    #EDF1F7;
  --muted:   #8A94A6;
  --dim:     #5C6577;

  --orange:  #FF5A00;   /* from the wordmark's orange gradient */
  --amber:   #FFB945;   /* its light stop */
  --blue:    #4696EE;   /* the icon's blue */
  --blue-dp: #0A40A1;
  --green:   #34D399;

  --display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --w: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--body); font-size: 16px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
h1,h2,h3 { margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

.disp { font-family: var(--display); font-weight: 700; font-style: italic; letter-spacing: -0.025em; }
.eyebrow {
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange);
}

/* ── CTA ──────────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 15.5px; padding: 15px 26px; border-radius: 11px;
  border: 1px solid #FF7A2E;
  box-shadow: 0 10px 30px -10px rgba(255,90,0,0.65);
  transition: transform .14s ease, box-shadow .14s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -10px rgba(255,90,0,0.8); }
.cta.ghost {
  background: transparent; color: var(--text); border-color: var(--border); box-shadow: none;
}
.cta.ghost:hover { border-color: var(--dim); transform: none; }
.cta-sub { font-size: 13px; color: var(--dim); margin-top: 12px; }

/* The no-contract promise is the objection every shop leads with, so it is set
   as a statement rather than fine print. The skewed rule is the logo's roof
   pitch, the same device used for the section rules. */
.promise {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px; padding: 11px 20px 11px 17px;
  border: 1px solid var(--border); border-radius: 10px;
  background: linear-gradient(180deg, var(--card-hi), var(--card));
  font-size: 15px; color: var(--muted); line-height: 1.45;
}
.promise b { font-weight: 700; color: var(--amber); white-space: nowrap; }
.promise::before {
  content: ""; flex: none; width: 4px; height: 26px; border-radius: 2px;
  background: linear-gradient(180deg, var(--orange), var(--amber));
  transform: skewX(-17deg);
}
@media (max-width: 560px) { .promise { display: flex; font-size: 14px; } }

/* ── Sticky bar ───────────────────────────────────────── */
.bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,7,12,0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 13px; padding-bottom: 13px; }
.bar svg { height: 30px; width: auto; display: block; }
.bar .cta { padding: 10px 18px; font-size: 14px; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 92px 0 76px; }
/* The rake: the logo's roof pitch, run as a schedule-board grid. */
.hero::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 150%;
  background:
    repeating-linear-gradient(103deg, rgba(70,150,238,0.075) 0 1px, transparent 1px 78px);
  transform: skewY(-1.2deg); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 380px at 8% 0%, rgba(255,90,0,0.13), transparent 62%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: clamp(40px, 6.4vw, 70px); line-height: 1.0; letter-spacing: -0.03em;
  margin-top: 20px; max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--orange); }
.hero .lede { margin-top: 24px; max-width: 56ch; font-size: 18.5px; color: var(--muted); }
.hero .lede strong { color: var(--text); font-weight: 600; }
.hero .btns { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Proof strip ──────────────────────────────────────── */
.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-lift); }
.proof .wrap { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 760px) { .proof .wrap { grid-template-columns: repeat(4, 1fr); } }
.pf { padding: 26px 22px; border-bottom: 1px solid var(--border); }
@media (min-width: 760px) { .pf { border-bottom: 0; border-right: 1px solid var(--border); } .pf:last-child { border-right: 0; } }
.pf:last-child { border-bottom: 0; }
.pf .n { font-family: var(--display); font-size: 30px; font-weight: 700; font-style: italic; color: var(--amber); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.pf .l { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* ── Sections ─────────────────────────────────────────── */
section { padding: 78px 0; position: relative; }
section + section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
}
.sec-head { max-width: 60ch; display: flex; flex-direction: column; gap: 13px; }
.sec-head h2 { font-family: var(--display); font-weight: 700; font-style: italic; font-size: clamp(28px, 3.8vw, 40px); line-height: 1.08; }
.sec-head p { color: var(--muted); font-size: 16.5px; }

/* ── Tiers ────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
@media (min-width: 880px) { .tiers { grid-template-columns: 1fr 1.06fr; align-items: start; } }
.tier { border: 1px solid var(--border); background: var(--card); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.tier.pow { border-color: rgba(255,90,0,0.45); background: linear-gradient(180deg, rgba(255,90,0,0.055), var(--card) 42%); position: relative; }
.tier.pow .flag {
  position: absolute; top: -11px; left: 30px; background: var(--orange); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 6px;
}
.tier h3 { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 25px; }
.tier .who { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.price { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 46px; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.price span { font-family: var(--body); font-style: normal; font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
ul.feat { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
ul.feat li { display: flex; gap: 11px; font-size: 14.5px; }
ul.feat li::before { content: "▸"; color: var(--orange); flex: none; line-height: 1.5; }
ul.feat li.dim { color: var(--dim); font-weight: 600; }
ul.feat li.dim::before { content: "▸"; color: var(--border); }
.tier .note { border-top: 1px solid var(--border); padding-top: 17px; font-size: 13.5px; color: var(--muted); }

.founding {
  margin-top: 20px; border-radius: 18px; padding: 28px 30px;
  border: 1px solid rgba(255,185,69,0.36);
  background: linear-gradient(120deg, rgba(255,185,69,0.10), rgba(255,90,0,0.04));
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.founding h3 { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 23px; color: var(--amber); }
.founding p { color: var(--muted); font-size: 14.5px; max-width: 56ch; margin-top: 7px; }
.founding .big { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 40px; color: var(--amber); font-variant-numeric: tabular-nums; white-space: nowrap; letter-spacing: -0.03em; }
.founding .big s { color: var(--dim); font-size: 19px; margin-right: 9px; }
.founding .big small { font-family: var(--body); font-style: normal; font-size: 14px; font-weight: 500; color: var(--muted); }

/* ── Cards ────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
@media (min-width: 720px) { .grid.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .grid.three { grid-template-columns: repeat(3,1fr); } }
.card { border: 1px solid var(--border); background: var(--card); border-radius: 15px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.card h3 { font-size: 16.5px; font-weight: 700; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .k { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 30px; color: var(--orange); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.card.blue .k { color: var(--blue); }
.card.green .k { color: var(--green); }

/* ── Table ────────────────────────────────────────────── */
.tablewrap { margin-top: 32px; overflow-x: auto; border: 1px solid var(--border); border-radius: 15px; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 580px; }
thead th { text-align: left; padding: 15px 20px; background: var(--card); font-family: var(--display); font-style: italic; font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--border); }
thead th.c, tbody td.c { text-align: center; width: 140px; }
tbody td { padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--muted); }
tbody tr:last-child td { border-bottom: 0; }
tbody td:first-child { color: var(--text); }
.yes { color: var(--green); font-weight: 700; }
.no { color: #414A5B; }

/* ── Steps ────────────────────────────────────────────── */
ol.steps { list-style: none; counter-reset: s; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
ol.steps li { counter-increment: s; display: flex; gap: 17px; border: 1px solid var(--border); background: var(--card); border-radius: 13px; padding: 19px 22px; }
ol.steps li::before {
  content: counter(s); flex: none; width: 30px; height: 30px; border-radius: 9px;
  background: rgba(255,90,0,0.13); border: 1px solid rgba(255,90,0,0.32); color: var(--orange);
  font-family: var(--display); font-style: italic; font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}
ol.steps h3 { font-size: 16px; font-weight: 700; }
ol.steps p { color: var(--muted); font-size: 14.5px; margin-top: 5px; }

/* ── Callout ──────────────────────────────────────────── */
.callout { margin-top: 32px; border-left: 3px solid var(--orange); background: var(--card); border-radius: 0 13px 13px 0; padding: 22px 26px; }
.callout p { color: var(--muted); font-size: 15.5px; }
.callout p + p { margin-top: 11px; }
.callout strong { color: var(--text); font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { margin-top: 32px; border: 1px solid var(--border); border-radius: 15px; overflow: hidden; }
/* Scoped to .faq on purpose. These were bare `details`/`summary` selectors and
   they leaked onto the mobile nav's <details> menu — which rendered the FAQ's
   orange "+" inside the hamburger button. Any future <details> on this site
   gets its own styling rather than inheriting the accordion's. */
.faq details { border-bottom: 1px solid var(--border); background: var(--card); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; padding: 18px 23px; font-weight: 600; font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 21px; font-family: var(--display); flex: none; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { background: var(--card-hi); }
.faq details .body { padding: 0 23px 21px; color: var(--muted); font-size: 14.5px; }
.faq details .body p + p { margin-top: 11px; }

/* ── Closer ───────────────────────────────────────────── */
.closer { text-align: center; padding: 90px 0; background:
  radial-gradient(680px 330px at 50% 0%, rgba(255,90,0,0.12), transparent 65%), var(--bg-lift); }
.closer h2 { font-family: var(--display); font-weight: 700; font-style: italic; font-size: clamp(30px, 4.6vw, 46px); line-height: 1.06; max-width: 18ch; margin: 0 auto; }
.closer p { color: var(--muted); margin: 18px auto 0; max-width: 50ch; font-size: 17px; }
.closer .btns { margin-top: 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

footer { border-top: 1px solid var(--border); padding: 40px 0 60px; }
footer .row { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
footer svg { height: 26px; width: auto; opacity: .85; }
footer p { color: var(--dim); font-size: 13.5px; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ─────────────────────────────────────────────────────────
   Multi-page additions — site nav, sub-page hero, tables.
   Added when the trade and comparison pages landed.
   ───────────────────────────────────────────────────────── */

/* Header is now a three-part bar: mark · nav · CTA */
.bar .wrap { display: flex; align-items: center; gap: 18px; }
.bar .mark { flex: none; display: inline-flex; align-items: center; gap: 10px; line-height: 0; }


.sitenav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.sitenav a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 7px 11px; border-radius: 7px; white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.sitenav a:hover { color: var(--text); background: var(--card-hi); }
.sitenav a.on { color: var(--text); background: var(--card-hi); }
.bar .sitenav + .cta { margin-left: 4px; }



/* Sub-page hero: same language as the home hero, dialled down so the
   homepage still reads as the front door. */
.hero.sub { padding: 82px 0 62px; }
.hero.sub h1 { font-size: clamp(38px, 5.4vw, 66px); }
.hero.sub .lede { max-width: 640px; }

/* Tables — day-in-the-life and comparison. Both scroll inside their own
   container so the page body never scrolls sideways. */
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch;
             border: 1px solid var(--border); border-radius: 12px; background: var(--card); }
table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 560px; }
table caption {
  caption-side: top; text-align: left; padding: 16px 20px 0;
  color: var(--muted); font-size: 13.5px; line-height: 1.5;
}
table th, table td { padding: 14px 20px; text-align: left; vertical-align: top;
                     border-bottom: 1px solid var(--border); }
table thead th { color: var(--dim); font-size: 12px; font-weight: 700;
                 text-transform: uppercase; letter-spacing: .07em; }
table tbody tr:last-child th, table tbody tr:last-child td { border-bottom: 0; }
table tbody th[scope="row"] { color: var(--text); font-weight: 600; }

.daytable td:first-child { color: var(--muted); width: 42%; }
.daytable td:last-child { color: var(--text); }

.cmp { min-width: 720px; font-variant-numeric: tabular-nums; }
.cmp td { color: var(--muted); }
.cmp thead th + th { color: var(--text); }
.cmp thead th:nth-child(2) { color: var(--amber); }
.cmp td.win { color: var(--text); font-weight: 600; }
.cmp td.win::before {
  content: ""; display: inline-block; width: 3px; height: 13px; margin-right: 9px;
  vertical-align: -1px; border-radius: 2px; transform: skewX(-17deg);
  background: linear-gradient(180deg, var(--orange), var(--amber));
}
.cmp .sub { display: block; color: var(--dim); font-size: 12.5px; font-weight: 400; margin-top: 3px; }
.maths td { font-weight: 600; color: var(--text); }

.tnote { margin-top: 16px; color: var(--muted); font-size: 14.5px; line-height: 1.65; max-width: 760px; }
.tnote strong { color: var(--text); }

/* Trade strip on the home page */
.trades { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trades a {
  display: block; padding: 22px 20px; border: 1px solid var(--border); border-radius: 12px;
  background: linear-gradient(180deg, var(--card-hi), var(--card));
  text-decoration: none; transition: border-color .15s ease, transform .15s ease;
}
.trades a:hover { border-color: #2c3647; transform: translateY(-2px); }
.trades h3 { margin: 0 0 6px; font-family: var(--display); font-style: italic;
             font-weight: 700; font-size: 20px; color: var(--text); }
.trades p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 860px) { .trades { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trades { grid-template-columns: 1fr; } }

footer .sitenav.foot { margin: 0; justify-content: center; }
footer .mark { display: inline-flex; align-items: center; gap: 10px; line-height: 0; }

/* Anchor targets clear the sticky bar instead of landing under it. */
:target, section[id], h2[id] { scroll-margin-top: 88px; }


/* ─────────────────────────────────────────────────────────
   Mobile navigation — a real menu, not a wrapped link list.

   No JS: the site's own CSP is script-src 'self', so an inline
   toggle would be blocked. <details>/<summary> gives a working
   disclosure with keyboard support and no script at all.

   Two separate elements rather than one restyled: forcing a
   closed <details> to show its children is unreliable across
   browsers, so the desktop bar keeps its own <nav> and the
   mobile menu is its own <details>. Each is display:none at
   the other's width, so only one is ever in the tree visually.
   ───────────────────────────────────────────────────────── */
.menu { display: none; }
.bar .wrap { flex-wrap: nowrap; }

@media (max-width: 900px) {
  .sitenav.desk { display: none; }

  .bar .wrap { gap: 12px; }
  .bar .mark img { height: 26px; }
  .bar .cta { padding: 9px 14px; font-size: 14px; white-space: nowrap; }

  .menu { display: block; margin-left: auto; position: relative; }
  .menu > summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; border: 1px solid var(--border); border-radius: 9px;
    background: var(--card-hi); color: var(--text); font-size: 14px; font-weight: 600;
  }
  .menu > summary::-webkit-details-marker { display: none; }
  .menu > summary::marker { content: ""; }
  .menu > summary::after { content: none; }
  .menu > summary:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

  /* Three bars, drawn rather than shipped as an icon font or SVG file. */
  .bars { width: 16px; height: 2px; border-radius: 2px; background: var(--text);
          box-shadow: 0 5px 0 var(--text), 0 -5px 0 var(--text); display: block; }
  .menu[open] > summary .bars { box-shadow: 0 5px 0 var(--text), 0 -5px 0 var(--text); }

  .mpanel {
    position: absolute; right: 0; top: calc(100% + 10px); z-index: 60;
    width: min(78vw, 320px); max-height: 74vh; overflow-y: auto;
    padding: 14px; border: 1px solid var(--border); border-radius: 14px;
    background: var(--card); box-shadow: 0 24px 60px rgba(0,0,0,.55);
    display: flex; flex-direction: column; gap: 2px;
  }
  .mpanel a {
    display: block; padding: 10px 12px; border-radius: 8px;
    color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500;
  }
  .mpanel a:hover, .mpanel a.on { color: var(--text); background: var(--card-hi); }
  .mhead {
    margin: 12px 0 4px; padding: 0 12px;
    color: var(--dim); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .09em;
  }
  .mpanel .mhead:first-child { margin-top: 2px; }
  .mpanel .mcta {
    margin-top: 12px; text-align: center; color: #fff;
    padding: 12px 14px; font-size: 15px;
  }

  /* Footer: three stacked rows of links is a wall on a phone. */
  footer .sitenav.foot { gap: 2px 10px; }
  footer .sitenav.foot a { padding: 5px 7px; font-size: 12.5px; }
}

@media (max-width: 420px) {
  .bar .cta { padding: 8px 11px; font-size: 13px; }
  .menu > summary .mlabel { display: none; }
  .menu > summary { padding: 10px 12px; }
}


/* ─────────────────────────────────────────────────────────
   Logo lockup — SB monogram + wordmark.

   The monogram alone does not say who this is, and ServiceBuilt
   is not a brand anyone recognises from two letters yet. So the
   mark and the name travel together, with the same blue/orange
   split the monogram uses.
   ───────────────────────────────────────────────────────── */
.mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; line-height: 0; }
.mark img { height: 30px; width: auto; display: block; }
.sbword {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: 22px; letter-spacing: -.015em; line-height: 1;
  color: var(--blue); white-space: nowrap;
}
.sbword em { font-style: italic; color: var(--orange); }

/* Screen-reader-only label. The <img> is decorative (alt="") because the
   adjacent wordmark already carries the name visually; this gives the link
   an accessible name without duplicating it on screen. */
.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

footer .mark { justify-content: center; margin-bottom: 4px; }
footer .mark img { height: 34px; }
footer .sbword { font-size: 25px; }

@media (max-width: 900px) {
  .mark img { height: 26px; }
  .sbword { font-size: 19px; }
}
@media (max-width: 420px) {
  .sbword { font-size: 17px; }
  .mark { gap: 8px; }
}

/* ── Product shots ────────────────────────────────────── */
/* Two screenshots with very different aspect ratios: a wide chart card and a
   tall phone. Top-aligned, not stretched or bottom-aligned — bottom-aligning
   left a hole above the shorter one. The wide shot carries the app's own card
   border inside the PNG, so it gets no second frame here; the phone does, and
   that frame reads as the device bezel. */
.shots { display: grid; grid-template-columns: 1fr; gap: 34px; margin-top: 34px; justify-items: center; }
@media (min-width: 880px) {
  .shots { grid-template-columns: 1.5fr 0.72fr; gap: 36px; align-items: start; justify-items: stretch; }
}
.shot { margin: 0; display: flex; flex-direction: column; gap: 13px; max-width: 100%; }
.shot img { display: block; width: 100%; height: auto; }
.shot figcaption { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.shot.wide img { border-radius: 12px; }
.shot.tall { align-items: center; }
.shot.tall img {
  max-width: 244px; border-radius: 26px;
  border: 1px solid var(--border); background: var(--card);
}
.shot.tall figcaption { max-width: 300px; text-align: center; }
