/* ------------------------------------------------------------------
   Vepó — design tokens
   Brand primary #d8dec3 (pale sage) per the client, 2026-09-03; the rest of
   the green range is re-hued to it. #e69600 is their accent. The previous
   primary #4e6655 came from the old vepohk.com (most-used colour there).
   No webfonts are loaded. The old site pulled DM Sans, Syne, Open Sans,
   Noto Sans TC and Noto Serif TC; that alone was a large part of the
   19.8s load. System CJK faces render the same text at zero cost.
------------------------------------------------------------------ */

:root {
  --green:        #d8dec3;   /* brand primary: fills, buttons, decoration. 1.3:1 on paper, never text */
  --green-ink:    #5c6440;   /* same hue, dark enough for text: 6.0:1 on paper, 4.5:1 on the primary fill */
  --green-deep:   #36382f;
  --green-mid:    #6e7066;
  --green-soft:   #888f70;   /* borders and decoration: 3.2:1, fine for non-text */
  --sage-ink:     #6f7656;   /* same sage, dark enough for the small labels: 4.6:1 */
  --green-pale:   #a5b07a;
  --gold:         #e69600;   /* their accent: fills, borders, decoration */
  --gold-ink:     #9c6500;   /* same hue, dark enough for text: 4.7:1 on paper */

  --paper:        #FBFAF7;
  --sheet:        #FFFFFF;
  --band:         #F2F0EA;
  --ink:          #1F1F1F;
  --ink-soft:     #5A5F58;
  --ink-faint:    #6c716b;
  --rule:         #E2DFD7;

  --sans: "PingFang HK", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei",
          -apple-system, "Segoe UI", system-ui, sans-serif;
  --serif: "Noto Serif TC", "Songti TC", "Songti SC", "MingLiU", Georgia, serif;

  --wrap: 72rem;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 5rem;
}
/* Their wordmark is a hairline — the strokes are 1.36% of its width, so under
   about 74px wide they fall below one device pixel on a 1x screen and grey out.
   96px is the narrowest that still holds the line, and that sets the header
   height rather than the other way round: min-height 5rem leaves the 64px mark
   8px of air top and bottom. Do NOT add vertical padding here to do that job —
   .header-in shares its element with .wrap, so a `padding` shorthand wipes out
   .wrap's horizontal padding and the logo lands flush on the viewport edge.
   菲水澤樸 used to sit under the old text logo; keeping it here would push the
   sticky bar to 99px, and it already appears in the hero and on /about. */
.brand { display: block; text-decoration: none; }
.brand img { display: block; width: 96px; height: auto; }
@media (max-width: 620px) {
  .brand img { width: 78px; }
  .header-in { min-height: 4.25rem; }   /* 52px logo + 8px each side */
}
.nav { display: flex; gap: clamp(1rem, 2.5vw, 2rem); align-items: center; }
.nav a {
  text-decoration: none; font-size: 0.92rem; color: var(--ink-soft);
  padding: 0.25rem 0; border-bottom: 1px solid transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--green-ink); border-bottom-color: var(--green-ink); }
}
@media (max-width: 820px) { .nav { display: none; } }

/* Mobile navigation. No JavaScript on this site, so the menu is a native
   <details> disclosure: keyboard-operable and screen-reader-announced for free. */
.navmenu { display: none; position: relative; }
.navmenu > summary {
  list-style: none; cursor: pointer; user-select: none;
  font-size: 0.92rem; color: var(--green-deep);
  border: 1px solid var(--green-soft); border-radius: 2px;
  padding: 0.62rem 0.9rem; display: flex; align-items: center; gap: 0.5rem;
}
.navmenu > summary::-webkit-details-marker { display: none; }
.navmenu > summary::after {
  content: ""; width: 0.5rem; height: 0.5rem; margin-top: -0.2rem;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 200ms var(--ease);
}
.navmenu[open] > summary::after { transform: rotate(-135deg); margin-top: 0.15rem; }
.navmenu-panel {
  position: absolute; top: calc(100% + 0.75rem); right: 0; z-index: 60;
  min-width: 13rem; background: var(--sheet);
  border: 1px solid var(--rule); box-shadow: 0 12px 32px rgba(31, 31, 31, 0.1);
  display: flex; flex-direction: column; padding: 0.35rem 0;
}
.navmenu-panel a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.95rem; padding: 0.7rem 1.15rem;
}
.navmenu-panel a[aria-current="page"] { color: var(--green-ink); }
@media (max-width: 820px) { .navmenu { display: block; } }
@media (max-width: 380px) { .header-in .btn-primary { display: none; } }

.btn {
  display: inline-block; text-decoration: none; font-size: 0.92rem;
  padding: 0.62rem 1.35rem; border-radius: 2px; white-space: nowrap;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), transform 160ms var(--ease);
}
.btn-primary { background: var(--green); color: var(--green-ink); border: 1px solid var(--green); }
.btn-ghost { background: transparent; color: var(--green-deep); border: 1px solid var(--green-soft); }
/* The booking CTA. White on #e69600 is 2.4:1 — unreadable — so the brand gold
   stays as the fill and the label goes dark: 6.9:1, and the colour is untouched. */
.btn-gold { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--green-ink); border-color: var(--green-ink); color: #fff; }
  .btn-gold:hover { background: #cf8700; border-color: #cf8700; }
  .btn-ghost:hover { border-color: var(--green-ink); color: var(--green-ink); }
}
.btn:active { transform: scale(0.98); }

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

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
section.tint { background: var(--band); }
section.deep { background: var(--green); color: var(--ink); }   /* the brand primary as a band */
/* A primary button on the primary band would vanish: invert it there. */
.deep .btn-primary { background: var(--green-ink); color: #fff; border-color: var(--green-ink); }

.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage-ink); margin: 0 0 1rem;
}
.deep .eyebrow { color: var(--green-ink); }   /* 4.5:1 on the primary; --sage-ink is only 3.4 there */

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: 0.02em; line-height: 1.4; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 1.25rem; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); margin: 0 0 1.25rem; }
/* The brand wordmark set inline where a heading names the brand. Sized to the
   heading so it scales with it; -0.2em drops it onto the CJK glyph box. Only
   h1/h2: the stroke is 1.2% of the width and turns hairline below ~40px tall. */
h1 .wm, h2 .wm { display: inline-block; height: 1.1em; width: auto; vertical-align: -0.2em; }
h3 { font-size: clamp(1.1rem, 1.9vw, 1.35rem); margin: 0 0 0.6rem; }
p  { margin: 0 0 1.1rem; max-width: 42em; }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--ink-soft); }
.deep p { color: var(--ink-soft); }   /* 4.7:1 on the primary */

/* ---------- hero ---------- */

.hero { padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero h1 { max-width: 16ch; }
.hero .kicker {
  font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--green-ink); letter-spacing: 0.18em; margin: 0 0 1.5rem;
}
.hero-claims {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 2rem; padding: 0; list-style: none;
}
.hero-claims li {
  font-size: 0.85rem; letter-spacing: 0.06em; color: var(--green-deep);
  border: 1px solid var(--green-pale); padding: 0.35rem 0.85rem; border-radius: 999px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- media ---------- */

figure { margin: 0; }
figcaption { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.65rem; }

.hero-split {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; } }
/* 4/3 rather than 5/3, on the wider of the two columns: the reception shot is
   the only photograph of the actual room above the fold, so it carries weight. */
.hero-split img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (max-width: 900px) { .hero-split img { aspect-ratio: 3 / 2; } }
/* Giving the photo the wider column leaves the h1 about 455px at 1352px wide.
   「再決定做甚麼療程。」is 9 characters, which overflows to a third line at the
   global 3.4rem cap and orphans 「程。」. Cap it lower here only. */
.hero-split h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); }

.media-band { position: relative; }
.media-band img { width: 100%; object-fit: cover; aspect-ratio: 21 / 9; }
@media (max-width: 700px) { .media-band img { aspect-ratio: 3 / 2; } }

/* Video is preload="none": until someone presses play the page pays for the
   poster image only. The two source files are 26 MB and 33 MB on the current
   site, both loaded eagerly. */
.video-wrap { background: var(--green-deep); border: 1px solid var(--rule); }
.video-wrap video { width: 100%; height: auto; display: block; }
.video-wrap.reel { max-width: 22rem; margin-inline: auto; }

/* ---------- brand story ---------- */

/* Text and the brand film side by side. The film sits in the wider column and
   is still preload="none", so the poster is all it costs. */
.story-split {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
@media (max-width: 900px) { .story-split { grid-template-columns: 1fr; } }
.story-split > figure { margin: 0; }
.story-split figcaption {
  margin-top: 0.65rem; font-size: 0.82rem; color: var(--ink-faint);
}

/* ---------- testimonial ---------- */

.quotes { display: grid; gap: 1rem; margin: 0; padding: 0; }
.quotes blockquote {
  margin: 0; background: var(--sheet); border: 1px solid var(--rule);
  border-left: 3px solid var(--green-pale); padding: 1.1rem 1.35rem;
  font-size: 0.98rem; line-height: 1.8;
}
.quotes blockquote:nth-child(even) { margin-left: clamp(0rem, 4vw, 3rem); }
.quotes cite {
  display: block; margin-top: 0.6rem; font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-faint);
}

/* ---------- grids ---------- */

.cols { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.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)); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--sheet); border: 1px solid var(--rule);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
}
.card p:last-child { margin-bottom: 0; }
.card .num {
  font-family: var(--serif); font-size: 0.9rem; color: var(--gold-ink);
  letter-spacing: 0.1em; display: block; margin-bottom: 0.7rem;
}

/* ---------- treatment list ---------- */

.treatments { list-style: none; padding: 0; margin: 0; }
.treatments > li { border-top: 1px solid var(--rule); }
.treatments > li:last-child { border-bottom: 1px solid var(--rule); }
.treatment {
  display: grid; grid-template-columns: 9rem 6rem 1fr auto;
  gap: 0 clamp(1rem, 3vw, 2.5rem); align-items: start;
  padding: clamp(1.4rem, 3vw, 2rem) 0; text-decoration: none;
}
.treatment .tag { grid-column: 1; }
.treatment .thumb { grid-column: 2; }
.treatment > div { grid-column: 3; }
.treatment .go { grid-column: 4; }
.treatment .thumb {
  display: block; width: 6rem; height: 6rem; object-fit: cover;
  background: var(--sheet); border: 1px solid var(--rule);
}
.treatment .tag {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-ink);
  padding-top: 0.5rem;
}
.treatment .go { padding-top: 0.45rem; }
@media (max-width: 760px) {
  .treatment { grid-template-columns: 4.5rem 1fr; gap: 0.3rem 1rem; }
  .treatment .tag { grid-column: 1 / -1; padding-top: 0; margin-bottom: 0.35rem; }
  .treatment .thumb { width: 4.5rem; height: 4.5rem; grid-row: 2 / span 2; }
  .treatment > div, .treatment .go { grid-column: 2; }
  .treatment .go { padding-top: 0; }
}
.treatment h3 { margin: 0 0 0.4rem; }
.treatment p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.treatment .go { color: var(--green-ink); font-size: 0.9rem; white-space: nowrap; }
@media (hover: hover) and (pointer: fine) {
  a.treatment:hover h3 { color: var(--green-ink); }
  a.treatment:hover .thumb { border-color: var(--green-soft); }
}

/* not-yet-built treatment pages: same card, no link, no 404 */
.treatment.is-soon { cursor: default; }
.treatment.is-soon h3 { color: var(--ink-soft); }
.treatment.is-soon .go {
  color: var(--ink-faint); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- breadcrumbs ---------- */

.crumbs { padding-top: 1.5rem; font-size: 0.82rem; color: var(--ink-faint); }
.crumbs a { color: var(--green-ink); text-decoration: none; }
.crumbs span { margin: 0 0.35rem; }
@media (hover: hover) and (pointer: fine) { .crumbs a:hover { text-decoration: underline; } }

/* ---------- comparison table ---------- */

.compare {
  width: 100%; border-collapse: collapse; margin-top: 2.5rem;
  font-size: 0.95rem; background: var(--sheet);
}
.compare caption {
  text-align: left; font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--sage-ink); padding-bottom: 0.85rem;
}
.compare th, .compare td {
  border: 1px solid var(--rule); padding: 0.85rem 1rem;
  text-align: left; vertical-align: top;
}
.compare thead th { background: var(--band); font-family: var(--serif); font-weight: 600; }
.compare thead th:last-child { color: var(--green-ink); }
.compare tbody th { font-weight: 500; color: var(--ink-soft); width: 8.5rem; background: var(--paper); }
@media (max-width: 620px) {
  .compare, .compare tbody, .compare tr, .compare td, .compare th { display: block; }
  .compare thead { display: none; }
  .compare tr { margin-bottom: 1.25rem; border: 1px solid var(--rule); }
  .compare th, .compare td { border: 0; border-bottom: 1px solid var(--rule); width: auto; }
  .compare tr td:last-child { border-bottom: 0; }
  .compare td::before { content: attr(data-label); display: block; font-size: 0.7rem; letter-spacing: 0.14em; color: var(--sage-ink); }
}

/* ---------- review attribution ---------- */

.attrib { font-size: 0.85rem; color: var(--ink-faint); margin: 0.6rem 0 0; }
.deep .attrib { color: var(--ink-soft); }
.quotes + .quotes { margin-top: 2rem; }
.third-party {
  border-left: 2px solid var(--green-pale); padding-left: clamp(1rem, 2.5vw, 1.75rem);
}

/* ---------- therapist grid ---------- */

/* The five portraits come at ratios from 0.75 to 1.0, so the frame is fixed and
   object-fit does the work — no destructive cropping, and faces stay in shot
   because they sit above centre in all five. */
.team { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 900px) { .team { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .team { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.team img {
  display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  object-position: 50% 22%; background: var(--band);
}
.team b { display: block; font-family: var(--serif); font-size: 1.05rem; margin-top: 0.7rem; }
.team span { display: block; font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- opening hours ---------- */

.hours { border-collapse: collapse; font-size: 0.98rem; }
.hours th, .hours td { text-align: left; padding: 0.45rem 0; vertical-align: top; }
.hours th { font-weight: 400; color: var(--ink-soft); padding-right: 2rem; white-space: nowrap; }
.hours td { color: var(--ink); }

/* ---------- map ---------- */

.map-frame {
  margin-top: 2rem; border: 1px solid var(--rule); background: var(--sheet);
  aspect-ratio: 16 / 9; overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85); }
@media (max-width: 620px) { .map-frame { aspect-ratio: 4 / 3; } }

/* ---------- steps ---------- */

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.steps.row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .steps.row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps.row { grid-template-columns: 1fr; } }
.steps li { border-top: 2px solid var(--green-pale); padding-top: 1rem; }
.steps li b { display: block; font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.35rem; }
.steps li span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); padding: 1.15rem 0; }
.faq summary {
  cursor: pointer; font-family: var(--serif); font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage-ink); font-family: var(--sans); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.85rem 0 0; color: var(--ink-soft); }

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

.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid dt {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green-ink); margin-bottom: 0.4rem;   /* on the primary band: 4.5:1 */
}
.contact-grid dd { margin: 0 0 1.5rem; }
.contact-grid a { color: var(--green-ink); }

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

.site-footer { background: var(--green); color: var(--ink-soft); padding: 2.5rem 0; border-top: 1px solid var(--green-pale); }
.footer-in { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; }
.site-footer a { color: var(--green-ink); }

/* ---------- accessibility ---------- */

:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 3px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--green); color: var(--green-ink);
  padding: 0.6rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- shop ---------- */

.shop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
@media (max-width: 1000px) { .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.shop-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--sheet); border: 1px solid var(--rule);
  padding: clamp(0.9rem, 1.6vw, 1.15rem);
}
.shop-card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; background: #fff; }
.shop-card__cat {
  display: block; margin-top: 0.9rem;
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-ink);
}
.shop-card h3 { font-size: 0.98rem; line-height: 1.5; margin: 0.4rem 0 0.6rem; }
.shop-card__price { font-family: var(--serif); color: var(--green-deep); font-size: 0.95rem; }
@media (hover: hover) and (pointer: fine) {
  a.shop-card:hover { border-color: var(--green-soft); }
  a.shop-card:hover h3 { color: var(--green-ink); }
}

.shop-jump { margin-top: 1.5rem; font-size: 0.9rem; color: var(--ink-soft); }
.shop-jump a { color: var(--green-ink); }

.product-lead { padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.product-lead__in { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .product-lead__in { grid-template-columns: 1fr; } }
.product-gallery img.product-photo { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; background: #fff; border: 1px solid var(--rule); }
.product-thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.6rem; margin-top: 0.6rem; }
.product-thumbs img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; background: #fff; border: 1px solid var(--rule); }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.product-price { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--green-deep); margin: 0 0 1rem; }
.product-price span { font-size: 0.7em; color: var(--ink-faint); letter-spacing: 0.08em; }
.product-stock { font-size: 0.9rem; color: var(--green-ink); margin: 0; }

.prose { max-width: 46em; }
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; color: var(--ink-soft); }

.specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 2rem 0 0; border-top: 1px solid var(--rule); }
@media (max-width: 620px) { .specs { grid-template-columns: 1fr; } }
.specs > div { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--rule); }
.specs dt { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--sage-ink); margin: 0; }
.specs dd { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.data-list { margin: 1.5rem 0 0; padding-left: 1.25rem; }
.data-list li { margin-bottom: 0.6rem; color: var(--ink-soft); font-size: 0.95rem; }
.data-list a { color: var(--green-ink); font-family: var(--sans); }
