/* ==========================================================================
   Sheffer Music - sheffermusic.com
   Single stylesheet. No build step, no external requests.
   Palette: deep navy + dark teal ground, amber/gold accent, warm paper text.
   (Purple/violet is deliberately absent per Rob's standing design rule.)
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Ground */
  --ink:        #0a1622;
  --ink-raise:  #0f1f2e;
  --ink-line:   #1d3446;
  --teal-deep:  #0a2e34;
  --teal-line:  #16474e;

  /* Foreground (secondary text is tinted from the ground hue, never gray) */
  --paper:      #f4efe6;
  --paper-mid:  #aebecd;
  --paper-dim:  #8b9dae;
  --paper-teal: #9fc2c4;

  /* Accent */
  --amber:      #e9a538;
  --amber-lift: #f6c477;
  --amber-sink: #7a5514;

  /* Type */
  --display: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;  --s4: 1rem;
  --s5: 1.5rem;   --s6: 2rem;     --s7: 3rem;     --s8: 4rem;
  --s9: 6rem;     --s10: 8.5rem;

  /* Shell */
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --wide: 1140px;
  --measure: 68ch;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 400 1.0625rem/1.7 var(--sans);
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
svg { display: block; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--amber); text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { color: var(--amber-lift); }
button, input { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* --- Shell -------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.skip {
  position: absolute; left: var(--s4); top: -100vh;
  z-index: 50; background: var(--amber); color: var(--ink);
  padding: var(--s3) var(--s5); border-radius: 4px; font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: var(--s4); }

/* --- Typography --------------------------------------------------------- */
.h1, .h2, .h3, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
h1, .h1 { font-size: clamp(2.3rem, 6.2vw, 4.25rem); }
h2, .h2 { font-size: clamp(1.75rem, 3.9vw, 2.85rem); line-height: 1.1; }
h3, .h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.22; letter-spacing: -0.012em; }

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  line-height: 1.62;
  color: var(--paper-mid);
  max-width: 58ch;
}
.prose > * + * { margin-top: var(--s5); }
.prose p, .prose li { max-width: var(--measure); }
/* Direct children only. A descendant selector here also hit the h3 inside
   .row, which pushed every principle label out of line with its paragraph. */
.prose > h2 { margin-top: var(--s8); }
.prose > h3 { margin-top: var(--s7); }
.prose > h2 + p, .prose > h3 + p { margin-top: var(--s4); }
.prose strong { font-weight: 650; color: var(--paper); }
.tight { max-width: 54ch; }
.muted { color: var(--paper-mid); }
.fine { font-size: 0.9375rem; line-height: 1.6; color: var(--paper-dim); }

/* --- Rhythm strip: the site's one visual device -------------------------
   Heavy marks = load-bearing moments, light marks = decoration.
   Abstract by design; it makes no claim about any specific pattern.       */
.strip { width: 100%; height: auto; }
.strip .mark { fill: var(--paper-mid); opacity: 0.34; }
.strip .mark--heavy { fill: var(--amber); opacity: 1; }
.strip .base { fill: var(--ink-line); }

.strip--hero { max-width: 460px; margin-top: var(--s7); }
.strip--hero .mark {
  transform-origin: 50% 100%;
  animation: settle 900ms var(--ease-out) backwards;
}
.strip--hero .mark:nth-child(1)  { animation-delay: 60ms; }
.strip--hero .mark:nth-child(2)  { animation-delay: 120ms; }
.strip--hero .mark:nth-child(3)  { animation-delay: 180ms; }
.strip--hero .mark:nth-child(4)  { animation-delay: 240ms; }
.strip--hero .mark:nth-child(5)  { animation-delay: 300ms; }
.strip--hero .mark:nth-child(6)  { animation-delay: 360ms; }
.strip--hero .mark:nth-child(7)  { animation-delay: 420ms; }
.strip--hero .mark:nth-child(8)  { animation-delay: 480ms; }
.strip--hero .mark:nth-child(9)  { animation-delay: 540ms; }
.strip--hero .mark:nth-child(10) { animation-delay: 600ms; }
.strip--hero .mark:nth-child(11) { animation-delay: 660ms; }
.strip--hero .mark:nth-child(12) { animation-delay: 720ms; }
@keyframes settle {
  from { transform: scaleY(0.18); opacity: 0; }
  to   { transform: scaleY(1); }
}

.strip-rule { max-width: 460px; }
.strip-rule .mark { opacity: 0.22; }

/* --- Header ------------------------------------------------------------- */
.site-head {
  border-bottom: 1px solid var(--ink-line);
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: saturate(140%) blur(10px);
}
.site-head__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5); padding-block: var(--s4);
  flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: var(--s3);
  text-decoration: none; color: var(--paper);
  font-family: var(--display); font-size: 1.2rem; letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand img { height: 2.6rem; width: auto; flex: none; }
.brand b { display: block; font-weight: 400; }
.brand span {
  display: block; margin-top: 2px;
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 500;
  color: var(--paper-dim);
}
.brand:hover { color: var(--amber-lift); }

.site-nav { display: flex; gap: clamp(var(--s4), 2.4vw, var(--s6)); align-items: center; }
.site-nav a {
  color: var(--paper-mid); text-decoration: none;
  font-size: 0.9375rem; font-weight: 500;
  padding-block: var(--s2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--paper); border-bottom-color: var(--ink-line); }
.site-nav a[aria-current="page"] { color: var(--paper); border-bottom-color: var(--amber); }

@media (max-width: 560px) {
  .site-head { position: static; }
  .site-head__in { padding-block: var(--s4) 0; }
  .site-nav {
    width: 100%; justify-content: space-between;
    gap: var(--s3); margin-top: var(--s4);
    border-top: 1px solid var(--ink-line); padding-top: var(--s2);
  }
  .site-nav a { font-size: 0.875rem; }
}
/* Under ~380px the four nowrap items are wider than the viewport (the 320px
   clipped-nav finding, 2026-09-10). Let the row wrap instead of overflowing. */
@media (max-width: 380px) {
  .site-nav { flex-wrap: wrap; justify-content: flex-start; column-gap: var(--s5); row-gap: 0; }
}

/* --- Sections ----------------------------------------------------------- */
.band { padding-block: clamp(var(--s8), 9vw, var(--s10)); }
/* Keep in-page anchor targets clear of the sticky header. */
[id] { scroll-margin-top: 6rem; }
.band--tight { padding-block: clamp(var(--s7), 7vw, var(--s9)); }
.band--teal {
  background: var(--teal-deep);
  border-block: 1px solid var(--teal-line);
}
.band--teal .lede, .band--teal .muted { color: var(--paper-teal); }
.band--raise { background: var(--ink-raise); border-block: 1px solid var(--ink-line); }

.hero {
  padding-block: clamp(var(--s7), 8vw, var(--s9)) clamp(var(--s8), 9vw, var(--s9));
}
.hero h1 { max-width: 21ch; }
.hero .lede { margin-top: var(--s5); }
.hero__grid {
  display: grid; gap: var(--s7) var(--s8);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

/* Real photograph, deliberately un-decorated: thin line, small radius. */
.portrait { margin: 0; }
.portrait img {
  display: block; width: 100%; height: auto;
  border-radius: 8px; border: 1px solid var(--ink-line);
}
.portrait figcaption {
  margin-top: var(--s3); font-size: 0.875rem; color: var(--paper-dim);
}
.portrait--about { max-width: 720px; margin-top: var(--s7); }

/* --- Buttons ------------------------------------------------------------ */
.actions {
  display: flex; flex-wrap: wrap; gap: var(--s4);
  margin-top: var(--s7); align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: var(--s3);
  padding: 0.8rem 1.4rem; border-radius: 6px;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.005em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out),
              box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.btn--solid {
  background: var(--amber); color: #21160a;
  box-shadow: 0 2px 4px rgba(4, 10, 16, 0.4), 0 8px 18px -10px rgba(4, 10, 16, 0.8);
}
.btn--solid:hover {
  background: var(--amber-lift); color: #21160a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(4, 10, 16, 0.45), 0 12px 24px -12px rgba(4, 10, 16, 0.85);
}
.btn--line {
  border-color: var(--ink-line); color: var(--paper); background: transparent;
}
.btn--line:hover {
  border-color: var(--paper-dim); color: var(--paper);
  background: rgba(255, 255, 255, 0.035); transform: translateY(-2px);
}
.band--teal .btn--line { border-color: var(--teal-line); }
.band--teal .btn--line:hover { border-color: var(--paper-teal); }
.btn--big { padding: 0.95rem 1.7rem; font-size: 1.0625rem; }
.btn .ico { width: 1.05em; height: 1.05em; flex: none; }

.textlink {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(233, 165, 56, 0.4); padding-bottom: 2px;
}
.textlink:hover { border-bottom-color: var(--amber-lift); }
.textlink .ico { width: 0.85em; height: 0.85em; transition: transform 180ms var(--ease-out); }
.textlink:hover .ico { transform: translateX(3px); }

/* --- Principle rows (editorial, not a card grid) ------------------------ */
.rows { margin-top: var(--s8); border-top: 1px solid var(--ink-line); }
.row {
  display: grid; gap: var(--s3) var(--s7);
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  padding-block: var(--s6);
  border-bottom: 1px solid var(--ink-line);
}
.row h3 { color: var(--paper); }
.row p { color: var(--paper-mid); max-width: 62ch; }
.row p + p { margin-top: var(--s4); }
@media (max-width: 760px) {
  .row { grid-template-columns: 1fr; gap: var(--s3); padding-block: var(--s5); }
}

/* --- Product panel ------------------------------------------------------ */
.panel {
  display: grid; gap: var(--s7) var(--s8);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 880px) { .panel { grid-template-columns: 1fr; gap: var(--s6); } }

.price {
  display: flex; align-items: baseline; gap: var(--s3);
  font-family: var(--display); color: var(--paper);
}
.price b { font-size: 2.4rem; font-weight: 400; letter-spacing: -0.02em; }
.price span { font-family: var(--sans); font-size: 0.9375rem; color: var(--paper-mid); }

.spec { border-top: 1px solid var(--teal-line); }
.spec div {
  display: flex; justify-content: space-between; gap: var(--s5);
  padding-block: var(--s3);
  border-bottom: 1px solid var(--teal-line);
  font-size: 0.9375rem;
}
.spec dt { color: var(--paper-teal); margin: 0; }
.spec dd { color: var(--paper); margin: 0; text-align: right; font-weight: 500; }

/* --- Figure / legend ---------------------------------------------------- */
.figure { margin-top: var(--s7); }
.figure figcaption {
  margin-top: var(--s5); color: var(--paper-mid);
  font-size: 0.9375rem; max-width: 56ch;
}
.diagram {
  border: 1px solid var(--ink-line); border-radius: 10px;
  background: rgba(4, 10, 16, 0.4);
  padding: clamp(var(--s4), 3vw, var(--s6));
}
.diagram__row + .diagram__row { margin-top: var(--s5); padding-top: var(--s5); border-top: 1px solid var(--ink-line); }
.diagram__label {
  font-family: var(--display); font-style: italic;
  font-size: 0.9375rem; color: var(--paper-dim); margin-bottom: var(--s3);
}
.strip--fig { width: 100%; }

.legend { display: flex; flex-wrap: wrap; gap: var(--s5); margin-top: var(--s5); }
.legend li {
  display: flex; align-items: center; gap: var(--s3);
  font-size: 0.9375rem; color: var(--paper-mid);
}
.swatch { width: 4px; height: 1.5rem; border-radius: 2px; flex: none; background: var(--paper-mid); opacity: 0.34; }
.swatch--heavy { background: var(--amber); opacity: 1; height: 2rem; }

/* --- Guide blocks ------------------------------------------------------- */
.guide { padding-block: clamp(var(--s7), 6vw, var(--s8)); border-top: 1px solid var(--ink-line); }
.guide:first-of-type { border-top: 0; padding-top: var(--s6); }
.guide__grid {
  display: grid; gap: var(--s7) var(--s8);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 880px) { .guide__grid { grid-template-columns: 1fr; gap: var(--s6); } }
.guide h2 { margin: 0; }
.guide__body > * + * { margin-top: var(--s4); }
.guide__body p { color: var(--paper-mid); max-width: 60ch; }

/* --- Signup ------------------------------------------------------------- */
.signup-card {
  background: var(--ink-raise);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: clamp(var(--s5), 3vw, var(--s6));
  box-shadow: 0 2px 4px rgba(3, 8, 13, 0.4), 0 22px 48px -22px rgba(3, 8, 13, 0.9);
}
.band--teal .signup-card { background: #0d363c; border-color: var(--teal-line); }
.signup-card h3 { margin-bottom: var(--s2); }
.signup-card .fine { margin-top: var(--s3); }

.field { display: grid; gap: var(--s2); margin-top: var(--s5); }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--paper-mid); }
.field input {
  width: 100%; padding: 0.75rem 0.9rem;
  background: rgba(4, 10, 16, 0.55);
  border: 1px solid var(--ink-line); border-radius: 6px;
  color: var(--paper); font-size: 1rem;
  transition: border-color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}
.band--teal .field input { border-color: var(--teal-line); }
.field input::placeholder { color: var(--paper-dim); }
.field input:hover { border-color: var(--paper-dim); }
.field input:focus { border-color: var(--amber); background: rgba(4, 10, 16, 0.8); }
.signup form .btn { width: 100%; justify-content: center; margin-top: var(--s5); }

/* Placeholder notice, revealed by assets/js/site.js on interaction. */
.notice {
  display: none;
  margin-top: var(--s4); padding: var(--s3) var(--s4);
  border: 1px dashed var(--amber);
  border-radius: 6px;
  background: rgba(233, 165, 56, 0.08);
  color: var(--amber-lift);
  font-size: 0.875rem; line-height: 1.55;
}
.notice[data-open="true"] { display: block; }

/* --- Footer ------------------------------------------------------------- */
.site-foot {
  border-top: 1px solid var(--ink-line);
  padding-block: var(--s8) var(--s7);
  background: #071119;
}
.site-foot__grid {
  display: grid; gap: var(--s7) var(--s8);
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
}
@media (max-width: 760px) { .site-foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-foot__grid { grid-template-columns: 1fr; gap: var(--s6); } }
.site-foot h4 {
  font-family: var(--display); font-size: 1.05rem; font-weight: 400;
  color: var(--paper-dim);
  margin-bottom: var(--s4);
}
.site-foot li + li { margin-top: var(--s3); }
.site-foot li a, .site-foot p a {
  color: var(--paper-mid); text-decoration: none; font-size: 0.9375rem;
  display: inline-flex; align-items: center; gap: var(--s3);
}
.site-foot li a:hover, .site-foot p a:hover { color: var(--amber-lift); }
.site-foot .ico { width: 1.05em; height: 1.05em; flex: none; }
.site-foot__note {
  margin-top: var(--s8); padding-top: var(--s5);
  border-top: 1px solid var(--ink-line);
  display: flex; flex-wrap: wrap; gap: var(--s4) var(--s6);
  justify-content: space-between;
  font-size: 0.875rem; color: var(--paper-dim);
}
.foot-brand { font-family: var(--display); font-size: 1.35rem; color: var(--paper); }
.foot-blurb { color: var(--paper-dim); font-size: 0.9375rem; margin-top: var(--s3); max-width: 34ch; }

/* --- Utilities (2026-09-07: replaced the 17 inline style attributes so a
   strict CSP can drop 'unsafe-inline' for styles) ------------------------ */
.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: var(--s5) !important; }
.mt-6 { margin-top: var(--s6) !important; }
.mt-8 { margin-top: var(--s8) !important; }
.btn--block { width: 100%; justify-content: center; }
.site-foot__note--bare { margin-top: 0; border-top: 0; padding-top: 0; }
/* !important on the spacing utilities is deliberate: they stand in for inline
   styles, which always beat stylesheet rules (e.g. .prose > h2 on /rhythm/). */

/* Placeholder forms are inert in the markup itself (disabled controls, no
   action/method) - not just blocked by site.js. Fail closed without JS. */
.field input:disabled { opacity: 0.55; cursor: not-allowed; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

/* --- 2026-09-14 revision: Rob's site notes ------------------------------ */
.pt-0 { padding-top: 0 !important; }

/* Home hero: three-line stacked headline, second lede, bold ask line. */
.hero__stack { max-width: none; }
.hero .lede + .lede { margin-top: var(--s4); }
.hero__ask {
  margin-top: var(--s6);
  font-family: var(--display); font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700; color: var(--paper); letter-spacing: -0.012em;
}
.actions--hero { margin-top: var(--s5); }

/* Four Fuels: native <details> cards. The summary is the whole clickable
   card head; the chevron is drawn in CSS so there is nothing to script. */
.fuels { margin-top: var(--s7); display: grid; gap: var(--s4); }
.fuel {
  background: #0d363c; border: 1px solid var(--teal-line); border-radius: 10px;
  box-shadow: 0 2px 4px rgba(3, 8, 13, 0.35);
  transition: border-color 160ms var(--ease-out);
}
.fuel:hover, .fuel[open] { border-color: var(--paper-teal); }
.fuel summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s5);
  padding: var(--s5) clamp(var(--s5), 3vw, var(--s6));
}
.fuel summary::-webkit-details-marker { display: none; }
.fuel summary h3 { color: var(--paper); font-weight: 700; margin: 0; }
.fuel summary::after {
  content: ""; flex: none; width: 0.7rem; height: 0.7rem;
  border-right: 2px solid var(--amber); border-bottom: 2px solid var(--amber);
  transform: rotate(45deg); margin-right: 0.3rem;
  transition: transform 200ms var(--ease-out);
}
.fuel[open] summary::after { transform: rotate(-135deg); margin-top: 0.35rem; }
.fuel summary:focus-visible { outline-offset: -3px; border-radius: 10px; }
.fuel__body { padding: 0 clamp(var(--s5), 3vw, var(--s6)) var(--s6); }
.fuel__body p { color: var(--paper-teal); max-width: 68ch; }

/* About: photo first, no headline. */
.hero--photo { padding-bottom: var(--s6); }
.hero--photo .portrait--about { margin-top: 0; }

/* Guide covers inside signup cards. */
.cover {
  display: block; width: 100%; height: auto; max-width: 300px;
  margin: 0 auto var(--s5);
  border-radius: 6px; border: 1px solid var(--ink-line);
  box-shadow: 0 10px 24px -14px rgba(3, 8, 13, 0.9);
}
.guide__body .textlink { margin-top: var(--s2); }

/* Isolated landing pages: bare header (logo only), bare footer. */
.site-head--bare { position: static; }
.site-head--bare .site-head__in { justify-content: center; }
.hero--landing { padding-bottom: clamp(var(--s8), 9vw, var(--s9)); }
.hero--landing h1 { max-width: none; text-align: center; }
.kicker {
  text-align: center; font-size: 0.9375rem; font-weight: 600;
  color: var(--paper-dim); margin-bottom: var(--s3);
}
.landing__grid {
  display: grid; gap: var(--s7) var(--s8);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start; margin-top: var(--s7);
}
@media (max-width: 880px) { .landing__grid { grid-template-columns: 1fr; gap: var(--s6); } }
.portrait--landing { max-width: 420px; }
.prose-lite { margin-top: var(--s5); }
.prose-lite > * + * { margin-top: var(--s4); }
.prose-lite p { color: var(--paper-mid); max-width: 60ch; }
.signup-card--landing .cover { max-width: 340px; }
.site-foot--bare { padding-block: var(--s6); }
.site-foot--bare .site-foot__note a { color: var(--paper-mid); text-decoration: none; }
.site-foot--bare .site-foot__note a:hover { color: var(--amber-lift); }

/* Store: interim one-product list. */
.products { display: grid; gap: var(--s5); }
.product {
  display: grid; gap: var(--s5) var(--s7);
  grid-template-columns: minmax(0, 1fr) auto; align-items: center;
  padding: clamp(var(--s5), 3vw, var(--s6));
  background: var(--ink-raise); border: 1px solid var(--ink-line); border-radius: 10px;
}
@media (max-width: 640px) { .product { grid-template-columns: 1fr; } }
.product__body > * + * { margin-top: var(--s3); }
.product__price { display: flex; align-items: baseline; gap: var(--s3); font-family: var(--display); }
.product__price b { font-size: 1.8rem; font-weight: 400; }
.product__price span { font-family: var(--sans); font-size: 0.9375rem; color: var(--paper-mid); }
.actions--product {
  margin-top: 0; flex-direction: column; align-items: stretch; align-self: center;
  gap: var(--s3);
}
.actions--product .btn { justify-content: center; }
/* Product page: tighten the gap between the buy block and the About text. */
.hero--product { padding-bottom: var(--s6); }
.hero--product .product__price { color: var(--paper); }
