/* The Best Dildos — editorial testing lab
   Design system. One stylesheet, no framework, no build step. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,900&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Palette: lab paper, deep pine ink, functional safety signals */
  --paper:    #FFFCF8;
  --paper-2:  #F2EBF7;
  --ink:      #1C1327;
  --slate:    #5F5470;
  --rule:     #E2D9EC;
  --safe:     #1B7F5C;  /* non-porous / sterilizable */
  --caution:  #C4841A;  /* conditional */
  --risk:     #CC2936;  /* porous / undisclosed */

  --measure: 34rem;
  --wide: 68rem;

  --step--1: clamp(0.86rem, 0.83rem + 0.15vw, 0.94rem);
  --step-0:  clamp(1.06rem, 1.01rem + 0.24vw, 1.19rem);
  --step-1:  clamp(1.33rem, 1.24rem + 0.44vw, 1.62rem);
  --step-2:  clamp(1.78rem, 1.55rem + 1.05vw, 2.55rem);
  --step-3:  clamp(2.15rem, 1.75rem + 2.0vw, 3.4rem);
  --step-4:  clamp(2.9rem, 2.1rem + 3.9vw, 5.6rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.62;
  font-weight: 400;
}

h1, h2, h3, h4, .sans { font-family: 'Fraunces', Georgia, serif; }

h1 { font-size: var(--step-4); line-height: 0.95; letter-spacing: -0.045em; font-weight: 800; margin: 0 0 1rem; }
h2 { font-size: var(--step-2); line-height: 1.05; letter-spacing: -0.035em; font-weight: 700; margin: 3.2rem 0 0.9rem; }
h3 { font-size: var(--step-1); line-height: 1.15; letter-spacing: -0.025em; font-weight: 700; margin: 2.2rem 0 0.6rem; }
p { margin: 0 0 1.15rem; }

a { color: var(--safe); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--safe); outline-offset: 3px; border-radius: 2px;
}

/* ---------- layout ---------- */

.wrap { width: min(100% - 2.5rem, var(--wide)); margin-inline: auto; }
.col  { width: min(100%, var(--measure)); }
article .col { margin-inline: 0; }

/* ---------- masthead ---------- */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 40;
}
.masthead .wrap {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 0.85rem 0; flex-wrap: wrap;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: 1.02rem; letter-spacing: -0.035em;
  color: var(--ink); text-decoration: none; line-height: 1;
}
.wordmark span { color: var(--safe); }
.masthead nav { margin-left: auto; display: flex; gap: 1.35rem; flex-wrap: wrap; }
.masthead nav a {
  font-family: 'Fraunces', Georgia, serif; font-size: 0.87rem; font-weight: 500;
  color: var(--slate); text-decoration: none;
}
.masthead nav a:hover, .masthead nav a[aria-current] { color: var(--ink); }

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

.hero { padding: 4.5rem 0 2.5rem; }
.hero .standfirst {
  font-size: var(--step-1); line-height: 1.42; color: var(--slate);
  font-weight: 300; max-width: 32rem;
}

/* ---------- the signature: durometer / porosity scale ---------- */

.scale {
  margin: 3rem 0 1rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-top: 1.4rem;
}
.scale-head {
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: 'Fraunces', Georgia, serif; font-size: 0.8rem;
  color: var(--slate); margin-bottom: 1rem;
}
.scale-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0 1.25rem;
  align-items: center;
  padding: 0.62rem 0;
  border-top: 1px solid var(--rule);
}
.scale-row:first-of-type { border-top: 0; }
.scale-row .mat {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: 0.94rem; letter-spacing: -0.01em;
}
.scale-row .mat small {
  display: block; font-weight: 400; color: var(--slate); font-size: 0.78rem; letter-spacing: 0;
}
.bar { position: relative; height: 12px; background: var(--paper-2); }
.bar i {
  position: absolute; inset: 0 auto 0 0; display: block;
  transition: width .5s cubic-bezier(.2,.7,.3,1);
}
.bar.is-safe i    { background: var(--safe); }
.bar.is-caution i { background: var(--caution); }
.bar.is-risk i    { background: var(--risk); }
.bar b {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: 'Fraunces', Georgia, serif; font-size: 0.74rem; font-weight: 500;
  color: var(--slate); padding-left: .6rem; background: var(--paper);
}
.scale-legend {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-family: 'Fraunces', Georgia, serif; font-size: 0.78rem; color: var(--slate);
  padding: 1rem 0 0;
}
.scale-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.scale-legend i { width: 11px; height: 11px; display: inline-block; }

/* ---------- verdict block ---------- */

.verdict {
  border-left: 3px solid var(--safe);
  padding: 0.2rem 0 0.2rem 1.15rem;
  margin: 2rem 0;
  font-size: var(--step-0);
}
.verdict.is-risk { border-left-color: var(--risk); }
.verdict p:last-child { margin-bottom: 0; }
.verdict strong { font-family: 'Fraunces', Georgia, serif; font-weight: 600; }

/* ---------- index list (not cards) ---------- */

.index { border-top: 1px solid var(--ink); margin-top: 1rem; }
.entry {
  display: grid; grid-template-columns: 1fr auto; gap: .3rem 2rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--rule);
  text-decoration: none; color: inherit;
}
.entry:hover .entry-t { text-decoration: underline; text-underline-offset: 4px; }
.entry-t { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: var(--step-1); letter-spacing: -0.02em; }
.entry-d { grid-column: 1 / -1; color: var(--slate); font-size: 0.98rem; max-width: 42rem; margin: 0; }
.entry-m { font-family: 'Fraunces', Georgia, serif; font-size: .8rem; color: var(--slate); white-space: nowrap; padding-top: .45rem; }

/* ---------- tables ---------- */

table { width: 100%; border-collapse: collapse; margin: 1.6rem 0 2rem; font-size: 0.95rem; }
caption { text-align: left; color: var(--slate); font-size: .88rem; padding-bottom: .7rem; }
th, td { text-align: left; padding: .68rem .8rem .68rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: .84rem; border-bottom-color: var(--ink); }
td.y { color: var(--safe); font-family: 'Fraunces', Georgia, serif; font-weight: 600; }
td.n { color: var(--risk); font-family: 'Fraunces', Georgia, serif; font-weight: 600; }

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

details {
  border-bottom: 1px solid var(--rule); padding: 1rem 0;
}
summary {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600; cursor: pointer;
  font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--slate); font-weight: 400; }
details[open] summary::after { content: '\2212'; }
details p { margin: .8rem 0 0; color: var(--slate); }

/* ---------- affiliate + trust ---------- */

.disclosure-strip {
  background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-family: 'Fraunces', Georgia, serif; font-size: .82rem; color: var(--slate);
  padding: .7rem 0;
}
.buy {
  display: inline-block; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: .92rem;
  background: var(--safe); color: var(--paper); text-decoration: none;
  padding: .68rem 1.15rem; margin: .3rem .4rem .3rem 0;
}
.buy:hover { background: var(--ink); color: var(--paper); }
.buy small { font-weight: 400; opacity: .75; }

.byline {
  font-family: 'Fraunces', Georgia, serif; font-size: .85rem; color: var(--slate);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: .8rem 0; margin: 2rem 0;
}
.byline a { color: var(--slate); }

/* ---------- age gate ---------- */

#gate {
  position: fixed; inset: 0; z-index: 100; background: var(--paper);
  display: none; place-items: center; padding: 2rem;
}
#gate.on { display: grid; }
#gate .box { max-width: 26rem; }
#gate h2 { margin-top: 0; }
#gate .buy { border: 0; cursor: pointer; font-size: 1rem; }
#gate .no {
  background: none; border: 0; color: var(--slate); font-family: 'Fraunces', Georgia, serif;
  font-size: .92rem; cursor: pointer; text-decoration: underline; padding: .68rem .4rem;
}

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

footer {
  border-top: 1px solid var(--ink); margin-top: 5rem; padding: 2.5rem 0 4rem;
  font-family: 'Fraunces', Georgia, serif; font-size: .87rem; color: var(--slate);
}
footer nav { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
footer a { color: var(--slate); }
footer p { max-width: 40rem; font-family: 'Public Sans', system-ui, sans-serif; }

@media (max-width: 600px) {
  .scale-row { grid-template-columns: 1fr; gap: .4rem; }
  .entry { grid-template-columns: 1fr; }
  .entry-m { padding-top: 0; }
  .hero { padding: 2.5rem 0 1.5rem; }
}

/* ============================================================
   COMMERCIAL LAYER — product cards, rankings, buy paths
   ============================================================ */

:root {
  --gold: #B8862F;
  --pick: #FFF8E8;
}

/* --- hero top pick --- */
.toppick {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: 2.5rem; align-items: center;
  border-top: 3px solid var(--ink); border-bottom: 1px solid var(--rule);
  padding: 2rem 0 2.2rem; margin-bottom: 2rem;
}
.toppick .shot { background: var(--paper-2); aspect-ratio: 4/3; position: relative; overflow: hidden; }
.toppick .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ribbon {
  position: absolute; top: 0; left: 0; background: var(--ink); color: var(--paper);
  font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: .74rem;
  padding: .4rem .7rem; z-index: 2;
}
.toppick h2 { margin: 0 0 .5rem; font-size: var(--step-2); }
.toppick .sub { color: var(--slate); margin-bottom: 1rem; }

/* --- score badge --- */
.score {
  display: inline-flex; align-items: baseline; gap: .3rem;
  font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.9rem;
  letter-spacing: -.04em; line-height: 1; color: var(--safe);
}
.score small { font-size: .72rem; font-weight: 500; color: var(--slate); letter-spacing: 0; }
.score.mid { color: var(--caution); }
.score.low { color: var(--risk); }

.pricetag {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 1.25rem;
}
.pricetag s { color: var(--slate); font-weight: 400; font-size: .9rem; margin-right: .4rem; }

/* --- ranked product rows --- */
.ranked { border-top: 2px solid var(--ink); margin: 1.5rem 0 0; }
.prod {
  display: grid;
  grid-template-columns: 2.4rem 8.5rem minmax(0,1fr) 11rem;
  gap: 0 1.4rem; align-items: start;
  padding: 1.6rem 0; border-bottom: 1px solid var(--rule);
}
.prod.is-pick { background: var(--pick); padding-inline: 1rem; margin-inline: -1rem; }
.rank {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.45rem;
  letter-spacing: -.05em; color: var(--slate); line-height: 1.1; padding-top: .1rem;
}
.prod .shot { background: var(--paper-2); aspect-ratio: 1; position: relative; overflow: hidden; }
.prod .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod h3 { margin: 0 0 .15rem; font-size: 1.16rem; }
.prod h3 a { color: inherit; text-decoration: none; }
.prod h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.prod .award {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: .76rem;
  color: var(--gold); display: block; margin-bottom: .3rem;
}
.spec {
  font-family: 'Fraunces', Georgia, serif; font-size: .8rem; color: var(--slate);
  display: flex; flex-wrap: wrap; gap: .3rem .9rem; margin: .5rem 0 .6rem;
}
.spec b { font-weight: 500; color: var(--ink); }
.prod p { font-size: .96rem; margin: 0 0 .6rem; }
.pc { list-style: none; padding: 0; margin: .5rem 0 0; font-size: .9rem; }
.pc li { padding-left: 1.15rem; position: relative; margin-bottom: .18rem; color: var(--slate); }
.pc li.up::before { content: '+'; position: absolute; left: 0; color: var(--safe); font-weight: 700; }
.pc li.dn::before { content: '\2212'; position: absolute; left: 0; color: var(--risk); font-weight: 700; }
.buybox { display: flex; flex-direction: column; gap: .45rem; align-items: flex-start; }
.buybox .buy { width: 100%; text-align: center; margin: 0; }
.buy.alt { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.buy.alt:hover { background: var(--ink); color: var(--paper); }

/* --- category tiles --- */
.cats { display: grid; grid-template-columns: repeat(auto-fit,minmax(13rem,1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 1.5rem 0; }
.cat { background: var(--paper); padding: 1.3rem 1.15rem; text-decoration: none; color: inherit; display: block; }
.cat:hover { background: var(--paper-2); }
.cat strong { font-family:'Fraunces', Georgia, serif; font-size: 1.02rem; display: block; margin-bottom: .2rem; }
.cat span { color: var(--slate); font-size: .87rem; }

/* --- jump nav --- */
.jump {
  border: 1px solid var(--rule); padding: 1.1rem 1.25rem; margin: 2rem 0;
  font-family:'Fraunces', Georgia, serif; font-size: .92rem;
}
.jump ol { margin: .6rem 0 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.jump li { margin-bottom: .3rem; break-inside: avoid; }

/* --- trust strip --- */
.trust {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(11rem,1fr)); gap: 1.6rem;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0; margin: 2.5rem 0; font-family:'Fraunces', Georgia, serif;
}
.trust div strong { display: block; font-size: 1.5rem; letter-spacing: -.03em; }
.trust div span { font-size: .84rem; color: var(--slate); }

@media (max-width: 820px) {
  .toppick { grid-template-columns: 1fr; gap: 1.2rem; }
  .prod { grid-template-columns: 2.2rem 6rem minmax(0,1fr); }
  .buybox { grid-column: 2 / -1; flex-direction: row; flex-wrap: wrap; margin-top: .7rem; }
  .buybox .buy { width: auto; }
  .jump ol { columns: 1; }
}

/* ============================================================
   MATERIAL SWATCHES — designed slots that hold the layout until
   real product photography drops in. Each swatch renders the
   actual material, which is the site's whole thesis.
   When an <img> is added inside .shot it covers the swatch.
   ============================================================ */

.shot { position: relative; background: var(--paper-2); }
.shot::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
}
.shot::after {
  content: attr(data-mat);
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: .68rem; letter-spacing: -.01em; line-height: 1.25;
  padding: .45rem .55rem;
  color: #fff; background: rgba(12,20,18,.72);
  backdrop-filter: blur(2px);
}
.shot img { position: relative; z-index: 2; }

/* brushed 316L steel */
.shot.m-steel::before {
  background:
    linear-gradient(115deg,
      #6E7B80 0%, #C9D2D6 14%, #8C989D 27%, #EAEFF1 41%,
      #7D8A8F 56%, #B9C4C9 70%, #6B777C 84%, #A9B4B9 100%);
}
/* dual-density platinum silicone: firm core under soft skin */
.shot.m-dual::before {
  background:
    radial-gradient(120% 90% at 30% 25%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(160deg, #C67D63 0%, #A85F47 45%, #8A4733 100%);
}
/* single-density platinum silicone, artisan colourway */
.shot.m-silicone::before {
  background:
    radial-gradient(110% 85% at 28% 22%, rgba(255,255,255,.5), transparent 58%),
    linear-gradient(160deg, #5E7FA6 0%, #3F5D80 50%, #2C4159 100%);
}
/* matte silicone, EU manufacture */
.shot.m-matte::before {
  background:
    radial-gradient(120% 90% at 32% 20%, rgba(255,255,255,.28), transparent 60%),
    linear-gradient(160deg, #46554E 0%, #2F3D38 55%, #212B27 100%);
}
/* small-batch textured silicone */
.shot.m-texture::before {
  background:
    repeating-linear-gradient(52deg, rgba(255,255,255,.14) 0 5px, transparent 5px 13px),
    radial-gradient(110% 85% at 30% 24%, rgba(255,255,255,.4), transparent 58%),
    linear-gradient(160deg, #7A5C93 0%, #5A4170 52%, #3E2C50 100%);
}
/* borosilicate glass */
.shot.m-glass::before {
  background:
    linear-gradient(105deg, transparent 38%, rgba(255,255,255,.85) 46%, transparent 54%),
    radial-gradient(120% 95% at 30% 20%, rgba(255,255,255,.7), transparent 62%),
    linear-gradient(160deg, #BFE0E6 0%, #8CC2CE 48%, #5E9BAB 100%);
}
/* porous elastomer — deliberately drab, tinted toward the risk colour */
.shot.m-porous::before {
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.05) 0 2px, transparent 2px 4px),
    linear-gradient(160deg, #C8AD97 0%, #A98E78 55%, #8A705C 100%);
}
.shot.m-porous::after { background: rgba(184,68,46,.88); }

/* rank numerals: bigger, and the top three get colour */
.rank { font-size: 2rem; font-weight: 800; letter-spacing: -.06em; }
.prod:nth-of-type(1) .rank,
.prod:nth-of-type(2) .rank,
.prod:nth-of-type(3) .rank { color: var(--ink); }

/* headline treatment: let the h1 breathe and sit on a rule */
.hero h1 { max-width: 15ch; }
.hero .standfirst { font-size: clamp(1.1rem,1rem + .6vw,1.4rem); }

/* section headings earn a marker */
main h2 {
  padding-top: .9rem;
  border-top: 2px solid var(--ink);
}
.toppick h2, #gate h2, .prod h3 { border-top: 0; padding-top: 0; }
.col h2:first-child { margin-top: 2rem; }

.ribbon { z-index: 3; }

/* ============================================================
   COLOUR SYSTEM v2 — violet identity, amber action
   ============================================================ */

:root {
  --brand:      #5B2A86;   /* identity: masthead, headings, links */
  --brand-deep: #3D1B5C;
  --brand-tint: #F2EBF7;
  --action:     #E87722;   /* buy buttons, prices, awards */
  --action-deep:#C25D12;
  --gold:       #C25D12;
  --pick:       #FFF4E6;
}

/* --- masthead becomes a colour anchor --- */
.masthead { background: var(--brand-deep); border-bottom: 0; }
.wordmark { color: #fff; font-weight: 900; font-size: 1.2rem; letter-spacing: -.03em; }
.wordmark span { color: var(--action); }
.masthead nav a { color: rgba(255,255,255,.78); font-weight: 500; }
.masthead nav a:hover, .masthead nav a[aria-current] { color: #fff; }
.masthead a:focus-visible { outline-color: var(--action); }

.disclosure-strip { background: var(--brand-tint); border-color: var(--rule); color: var(--brand-deep); }
.disclosure-strip a { color: var(--brand); font-weight: 600; }

/* --- headings carry the brand --- */
h1 { color: var(--brand-deep); font-weight: 900; }
h2, h3 { color: var(--brand-deep); }
main h2 { border-top: 3px solid var(--action); }
a { color: var(--brand); font-weight: 500; }
a:hover { color: var(--action-deep); }

/* --- hero sits on a tinted field --- */
.hero {
  background: linear-gradient(180deg, var(--brand-tint) 0%, rgba(242,235,247,0) 100%);
  margin-bottom: .5rem;
}
.hero .standfirst { color: var(--slate); font-weight: 400; }

/* --- action colour on the things that make money --- */
.buy { background: var(--action); color: #fff; font-weight: 700; border-radius: 3px; }
.buy:hover { background: var(--action-deep); color: #fff; }
.buy.alt { background: #fff; color: var(--brand); border: 2px solid var(--brand); }
.buy.alt:hover { background: var(--brand); color: #fff; }
.pricetag { color: var(--action-deep); font-weight: 700; }
.award { color: var(--action-deep) !important; font-weight: 700; }
.ribbon { background: var(--action); color: #fff; font-weight: 700; }

/* --- top pick gets a real frame --- */
.toppick {
  background: var(--pick); border: 2px solid var(--action);
  border-radius: 4px; padding: 1.6rem; margin-bottom: 2rem;
}
.prod.is-pick { background: var(--pick); border-left: 4px solid var(--action); }

/* --- rank numerals in brand colour --- */
.rank { color: var(--brand); opacity: .55; }
.prod:nth-of-type(-n+3) .rank { color: var(--action); opacity: 1; }

/* --- category tiles get life --- */
.cats { background: var(--rule); }
.cat strong { color: var(--brand-deep); }
.cat:hover { background: var(--brand-tint); }

/* --- tables --- */
th { color: var(--brand-deep); border-bottom-color: var(--brand); }
caption { color: var(--slate); }

/* --- callouts --- */
.verdict { border-left-width: 5px; background: var(--brand-tint); padding: 1rem 1.2rem; border-radius: 0 4px 4px 0; }
.verdict { border-left-color: var(--brand); }
.verdict.is-risk { background: #FDEEEF; border-left-color: var(--risk); }

/* --- trust strip --- */
.trust div strong { color: var(--action-deep); font-family: 'Fraunces', serif; font-weight: 900; }

/* --- faq --- */
summary { color: var(--brand-deep); }
details[open] summary { color: var(--action-deep); }

/* --- footer --- */
footer { background: var(--brand-deep); color: rgba(255,255,255,.72); border-top: 0; margin-top: 4rem; padding-top: 2.5rem; }
footer .wrap > nav a { color: #fff; font-weight: 600; }
footer a { color: rgba(255,255,255,.9); }
footer p { color: rgba(255,255,255,.7); }

/* --- article body: sans reads better on mobile --- */
body { font-family: 'Public Sans', system-ui, sans-serif; line-height: 1.65; }
.col p, article p { max-width: 38rem; }

/* --- score badge --- */
.score { font-family: 'Fraunces', serif; font-weight: 900; }

.soon {
  font-family: 'Public Sans', sans-serif; font-size: .82rem; color: var(--slate);
  font-style: italic;
}

/* lube swatches */
.shot.m-water::before {
  background: radial-gradient(110% 85% at 30% 22%, rgba(255,255,255,.65), transparent 60%),
              linear-gradient(160deg, #9FD4E8 0%, #63A9C9 52%, #3E7D9E 100%);
}
.shot.m-sillube::before {
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.6) 48%, transparent 56%),
              linear-gradient(160deg, #D6C9A8 0%, #B5A47C 55%, #8E7D57 100%);
}
.shot.m-hybrid::before {
  background: linear-gradient(160deg, #9FD4E8 0%, #9FD4E8 48%, #C7B79A 52%, #A8956E 100%);
}
