/* ============================================================
   Hello World 合同会社: v5 "retail"
   Adapted from H&M / Zara JP: white utilitarian chrome, red
   logo, full-bleed media blocks with black caption bars and
   arrows, plain product grid, tiny functional text, mega
   footer. Photography-first structure: every tinted block is a
   photo slot. This file is shared by copy between the two sites;
   company/css/style.css is the source of truth and
   tools/sync-css.sh copies it over shop/css/style.css.
   ============================================================ */

/* Self-hosted fonts: same-origin so they work in mainland China, where
   fonts.googleapis.com is blocked and a render-blocking <link> to it can
   hold the page blank in the WeChat webview. CJK comes from the device
   (Hiragino on iOS, Noto Sans CJK on Android): instant and native. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../assets/fonts/archivo-var.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

/* Wordmark only: 8 glyphs, carries the width axis for the expanded logo. */
@font-face {
  font-family: "Archivo Wide";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url(../assets/fonts/archivo-wide.woff2) format("woff2");
}

:root {
  color-scheme: only light;
  --white: #ffffff;
  --ink: #222222;
  --gray: #6b6b6b;
  --line: #e5e5e5;
  --bg-soft: #f4f2ef;
  --backdrop: #eae6df;
  --blush: #eee4de;
  --sage: #e5e9e2;
  --sketch: #a89f92;
  --black: #000000;
  /* brand red from the business card; the wordmark and promo bar used to use
     it, both are black now by Mia's call. Still used by the favicon. */
  --red: #9b0000;
  --font-body: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  --font-latin: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

html[lang="zh-CN"] {
  --font-body: "PingFang SC", "Noto Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
}

/* CJK families stay in the EN stack: the wordmark subtitle, the language
   switcher and the company table all carry 合同会社 on the English page too. */
html[lang="en"] {
  --font-body: "Archivo", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* the one <h1> per page: read by screen readers and search engines, drawn for
   nobody. What a sighted reader sees at the top is the wordmark. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 0.92rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

[id] { scroll-margin-top: 76px; }

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.5vw, 36px);
  padding-left: max(clamp(16px, 2.5vw, 36px), env(safe-area-inset-left));
  padding-right: max(clamp(16px, 2.5vw, 36px), env(safe-area-inset-right));
}

/* ---------- promo bar ---------- */

.promo {
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
}

/* padding grows the tap target, negative margin keeps the bar its old height */
.promo a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  padding: 12px 6px;
  margin: -12px -6px;
}

/* ---------- header ---------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
  line-height: 1;
}

.wordmark {
  font-family: "Archivo Wide", var(--font-latin);
  font-stretch: 125%;
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.wordmark-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.52em;
  color: var(--gray);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* 48dp hit boxes: Android's minimum, and comfortably over iOS's 44pt */
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0 6px;
  white-space: nowrap;
}

@media (hover: hover) {
  .site-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
}

.lang-switch { display: inline-flex; gap: 4px; }

/* real 48px boxes: these three sit side by side, and a mis-tap silently
   switches the whole site's language */
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 8px;
  font-family: var(--font-latin), var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gray);
  line-height: 1.7;
  white-space: nowrap;
}

@media (hover: hover) {
  .lang-switch a:hover { color: var(--ink); }
}

.lang-switch a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- media blocks (photo slots) ---------- */

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-hero {
  background: var(--backdrop);
  height: min(78vh, 720px);
  height: min(78svh, 720px);
}

/* ---------- product lightbox (shop site) ----------
   Mia asked for two things: photos you can tap to enlarge, and more of them.
   Each product card is now a real <a> to its full-size photo, so it enlarges
   even with JavaScript off; the script upgrades that into a gallery. */

a.product-art { position: relative; }

@media (hover: hover) {
  a.product-art { cursor: zoom-in; }
}

/* the little count badge is the affordance that says "there is more in here" */
a.product-art[data-count]::after {
  content: attr(data-count);
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-family: var(--font-latin);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.02em;
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  /* fully opaque: at 0.94 the promo bar and wordmark ghosted through behind
     the photo, which read as a rendering fault rather than a style */
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s;
}

.lb.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.lb-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.85rem;
  padding: 4px clamp(10px, 3vw, 22px);
  padding-top: max(4px, env(safe-area-inset-top));
}

.lb-title { font-weight: 700; }

.lb-count {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-latin);
  font-variant-numeric: tabular-nums;
  margin-right: auto;
}

.lb-close,
.lb-nav,
.lb-dot {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: var(--white);
  cursor: pointer;
}

.lb-close {
  min-width: 48px;
  min-height: 48px;
  font-size: 1.6rem;
  line-height: 1;
}

.lb-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
}

.lb-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 72px;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.lb-prev { left: 0; }
.lb-next { right: 0; }

.lb-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.lb-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.lb-dot[aria-current="true"] { background: var(--white); }

/* the dot is 7px of ink inside a 45px target: -18px lands on 43 and misses */
.lb-dot::after {
  content: "";
  position: absolute;
  inset: -19px;
}

.lb-single .lb-nav,
.lb-single .lb-dots { display: none; }

@media (prefers-reduced-motion: reduce) {
  .lb { transition: none; }
}

/* ---------- optional hero video (shop site) ----------
   The responsive <img> stays the base layer and the poster: it is what every
   visitor sees first, and the only thing Reduced Motion / Data Saver visitors
   ever download. The video fades in over it once it is actually playing, so a
   blocked autoplay is indistinguishable from a still hero. */

.media-hero { position: relative; }

.media-hero > img,
.media-hero > .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-video.is-playing { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 14px clamp(16px, 2.5vw, 36px);
  padding-left: max(clamp(16px, 2.5vw, 36px), env(safe-area-inset-left));
  padding-right: max(clamp(16px, 2.5vw, 36px), env(safe-area-inset-right));
  min-height: 48px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.caption-bar .arr {
  font-family: var(--font-latin);
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .caption-bar:hover .arr { transform: translateX(5px); }
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tile { display: flex; flex-direction: column; }

.tile .media {
  height: min(62vh, 560px);
  height: min(62svh, 560px);
  flex: none;
}

.tile:nth-child(1) .media { background: var(--blush); }
.tile:nth-child(2) .media { background: var(--sage); }

/* ---------- sections ---------- */

.section { padding: clamp(48px, 6vw, 80px) 0; }

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.section-sub {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.section-sub a { color: var(--ink); }

/* the placeholder disclosure on the shop: darker than the surrounding grey so
   it is genuinely read, but not a warning banner */
.section-sub .note {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- product grid ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 12px;
}

.product-card { text-decoration: none; color: var(--ink); }

.product-art {
  background: var(--bg-soft);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .product-card:hover .product-art img { transform: scale(1.03); }
}

.product-name {
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  line-height: 1.5;
}

.product-tag {
  font-size: 0.78rem;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}

/* ---------- about / company ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about-text p { margin-bottom: 16px; max-width: 38em; }

.service-panel h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.service-list { list-style: none; }

.service-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 2px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.service-list li:last-child { border-bottom: 1px solid var(--line); }

.service-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-left: auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--ink);
}

.company-table th,
.company-table td {
  padding: 14px 12px 14px 2px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
}

.company-table th {
  width: 190px;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

/* placeholder values in the company table, filled in before launch */
.pending {
  color: var(--gray);
  font-style: italic;
}

.company-table a {
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0;
  margin: -10px 0;
}

@media (hover: hover) {
  .company-table a:hover { text-decoration: underline; }
}

/* ---------- contact ---------- */

.contact { background: var(--bg-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.contact-lead { color: var(--gray); max-width: 38em; margin-bottom: 24px; }

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 12px 30px;
  transition: background 0.15s ease;
}

@media (hover: hover) {
  .btn:hover { background: #000; }
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }

.contact-meta {
  margin-top: 22px;
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 2;
}

.qr-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 18px 12px;
  text-align: center;
  width: 216px;
  justify-self: end;
}

.qr-card img { width: 100%; }

.qr-card p { margin-top: 8px; font-weight: 500; font-size: 0.8rem; }

.qr-card span { font-weight: 700; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--bg-soft);
  padding: clamp(36px, 5vw, 56px) 0 28px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  font-size: 0.85rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.footer-cols h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-cols ul { list-style: none; }

.footer-cols li { margin-bottom: 0; }

.footer-cols a,
.footer-cols .plain {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.83rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
}

.footer-cols li + li { margin-top: 2px; }

@media (hover: hover) {
  .footer-cols a:hover { color: var(--ink); text-decoration: underline; }
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
  color: var(--gray);
  font-size: 0.78rem;
}

/* ---------- responsive ---------- */

/* The header breaks to two rows here, not at 900px: the company site's nav
   carries five links, which pushed the language switcher off-screen between
   901px and 950px. That band includes a Pro Max iPhone held in landscape. */
@media (max-width: 1000px) {
  [id] { scroll-margin-top: 128px; }
  .site-header .wrap { flex-wrap: wrap; padding-top: 8px; padding-bottom: 6px; }
  .site-nav {
    order: 3;
    width: 100%;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  /* fade the right edge so the row reads as scrollable; the ::after spacer
     gives the fade something empty to land on once you reach the end, and
     the padding keeps focus rings from being clipped by overflow */
  .site-nav {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
    padding-block: 4px;
    margin-block: -4px;
    scroll-padding-right: 28px;
  }
  /* wider than the 24px fade, so the last link clears it at scroll end */
  .site-nav::after { content: ""; flex: 0 0 28px; }
}

@media (max-width: 900px) {
  .tiles { grid-template-columns: 1fr; }
  .tile .media { height: 46vh; height: 46svh; }
  .media-hero { height: min(64vh, 560px); height: min(64svh, 560px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .qr-card { justify-self: start; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .promo { font-size: 0.72rem; padding: 8px 12px; }
  .site-header .wrap { gap: 8px; }
  .wordmark { font-size: 1.05rem; }
  .wordmark-sub { letter-spacing: 0.42em; }
  .lang-switch a { font-size: 0.72rem; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 0.8rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
  .company-table th { width: auto; }
  .company-table th, .company-table td { display: block; padding: 5px 0; border-bottom: 0; }
  .company-table td { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .company-table tr:last-child td { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .caption-bar .arr, .product-art img, .btn { transition: none; }
}

/* ============================================================
   Company site additions (company/ only; the file is kept
   byte-identical on both sites, see tools/sync-css.sh)

   The company site deliberately does NOT reuse the shop's
   rhythm: no promo bar, no full-bleed photo hero, no photo
   card grid. It opens on type and runs on numbered rows, the
   way a Japanese 会社案内 does, so the two sites cannot be
   mistaken for each other.
   ============================================================ */

/* cross-site link: company <-> shop live on two different domains */
.nav-ext::after {
  content: "\2197";
  font-family: var(--font-latin);
  font-size: 0.78em;
  margin-left: 4px;
  vertical-align: 1px;
}

/* ---------- typographic opening ---------- */

.lede {
  padding: clamp(40px, 6.5vw, 86px) 0 clamp(34px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

/* Everything after the opening is company-site only: the shop has no .lede, so
   this tightens the vertical rhythm on one site without a body class. */
.lede ~ .section { padding: clamp(38px, 4.6vw, 62px) 0; }

.lede ~ .section .section-sub { margin-bottom: 18px; }

.lede-kicker {
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.lede-title {
  font-size: clamp(1.5rem, 3.9vw, 2.65rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.01em;
  max-width: 20em;
}

/* the hairline is the whole ornament budget of this page */
.lede hr {
  width: 56px;
  height: 0;
  border: 0;
  border-top: 2px solid var(--ink);
  margin: clamp(18px, 2.2vw, 26px) 0 clamp(14px, 1.7vw, 20px);
}

.lede-sub {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 34em;
}

/* ---------- numbered service rows ---------- */

.svc-list { list-style: none; }

.svc-row {
  display: grid;
  /* number, then a modest photo, then text running to the right edge. The photo
     sits left because the descriptions are one sentence long: against a
     right-hand photo they left a visible hole in the middle of every row. */
  grid-template-columns: 34px clamp(160px, 19vw, 248px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(14px, 1.8vw, 26px);
  padding: clamp(15px, 1.9vw, 22px) 0;
  border-top: 1px solid var(--line);
}

.svc-list li:last-child { border-bottom: 1px solid var(--line); }

.svc-num {
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  align-self: start;
  padding-top: 0.3em;
  font-variant-numeric: tabular-nums;
}

.svc-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.svc-body p {
  color: var(--gray);
  font-size: 0.88rem;
  max-width: 40em;
}

.svc-thumb {
  background: var(--bg-soft);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.svc-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- about fact list ---------- */

.fact-list { list-style: none; }

.fact-list li {
  display: flex;
  gap: 16px;
  padding: 8px 2px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.fact-list li:last-child { border-bottom: 1px solid var(--line); }

.fact-list dfn {
  font-style: normal;
  color: var(--gray);
  flex: 0 0 6.5em;
}

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 28px clamp(132px, 24vw, 190px) minmax(0, 1fr); }
}

/* Below this the row stacks: photo first at a wider crop, then the number and
   name on one line, then the description. */
@media (max-width: 640px) {
  .svc-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 4px 12px;
  }
  .svc-thumb {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 2 / 1;
    margin-bottom: 2px;
  }
  .svc-num { grid-row: 2; padding-top: 0; align-self: baseline; }
  .svc-body { grid-row: 2; }
  .fact-list dfn { flex-basis: 5.5em; }
}
