/* ============================================================================
   grill-rack.com — design system pulled from bombas.com (_ref-dna.json)
   Palette   : --brand-rusty-brown #953820, --brand-bee-yellow #e8bc44,
               --brand-soft-green #b6c498, --blue-60 #223859, --navbar #fdfcf6,
               --brand-warm-white #eaeadf, --black #030302, --off-black #1b1b1b
   Easing    : cubic-bezier(0, .5, .5, 1)  (133 occurrences in the reference)
   Durations : .3s / .4s          Radii: 2 / 12 / 20 / 90px      Shadows: none
   ========================================================================== */

@font-face {
  font-family: 'YoungSerif';
  src: url('assets/youngserif.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('assets/archivo-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces */
  --cream: #fdfcf6;
  --offwhite: #f8f8f4;
  --grey-20: #f1f1ee;
  --warm-white: #eaeadf;
  /* brand */
  --rust: #953820;
  --rust-deep: #7c2d19;
  --ember: #e0563e;
  --bee: #e8bc44;
  --sage: #b6c498;
  --navy: #223859;
  --navy-deep: #192335;
  /* ink */
  --ink: #030302;
  --warm-black: #231f20;
  --footer-bg: #1b1b1b;
  --muted: #5c5851;
  --border: #eaeadf;
  --border-bold: #948e82;

  --ui: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --display: 'YoungSerif', Georgia, serif;

  --ease: cubic-bezier(0, .5, .5, 1);
  --ease-out: cubic-bezier(.19, 1, .22, 1);

  --r-xs: 2px;
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 90px;

  --wrap: 1220px;
  --gut: clamp(20px, 5vw, 56px);
  --band: clamp(64px, 8.5vw, 128px);
  --hdr-h: 68px;
}

/* ---------------------------------------------------------------- base --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--ui);
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; border-radius: var(--r);
  font-weight: 700; text-decoration: none;
  transition: top .25s var(--ease);
}
.skip:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
[id] { scroll-margin-top: calc(var(--hdr-h) + 24px); }

/* ------------------------------------------------------------ typography - */
h1, h2, h3 { margin: 0; text-wrap: balance; }
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.95rem, 1.1rem + 3.3vw, 3.95rem);
  line-height: 1.07;
  letter-spacing: -.016em;
}
.sec__h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.05rem + 2.75vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.014em;
}
h3, .h3 {
  font-family: var(--ui);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.03rem + .5vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
}
p { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
.lead {
  font-size: clamp(1.1rem, 1.02rem + .38vw, 1.3rem);
  line-height: 1.55;
  color: var(--warm-black);
  max-width: 54ch;
}

/* --------------------------------------------------------------- layout -- */
.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.band { padding-block: var(--band); position: relative; }
.band--cream { background: var(--cream); }
.band--off { background: var(--offwhite); }
.band--warm { background: var(--warm-white); }
.band--navy { background: var(--navy); color: var(--cream); }
.band--rust { background: var(--rust); color: var(--cream); }
.band--navy .lead, .band--rust .lead { color: rgba(253, 252, 246, .82); }
.band--navy p, .band--rust p { color: rgba(253, 252, 246, .9); }
.band--navy .sec__rule, .band--rust .sec__rule { background: var(--bee); }

/* section head: display heading + drawn ember rule (the one authored moment) */
.sec__head { margin-bottom: clamp(30px, 3.6vw, 58px); }
.sec__rule {
  width: clamp(56px, 8vw, 104px); height: 4px;
  background: var(--rust);
  border-radius: var(--r-xs);
  margin-bottom: clamp(18px, 2vw, 26px);
  transform-origin: left center;
}
.sec__head .lead { margin-top: clamp(14px, 1.6vw, 22px); }

/* ------------------------------------------------------------- buttons --- */
.btn {
  --fill: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .62em;
  min-height: 54px; padding: 14px 26px;
  font-family: var(--ui); font-weight: 800; font-size: .9375rem; line-height: 1.1;
  letter-spacing: .005em;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: var(--r);
  background-image: linear-gradient(var(--fill), var(--fill));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  transition:
    background-size .4s var(--ease),
    border-radius .3s var(--ease),
    color .3s var(--ease),
    background-color .3s var(--ease),
    border-color .3s var(--ease),
    transform .18s var(--ease);
  will-change: background-size;
}
.btn:hover { background-size: 100% 100%; border-radius: var(--r-lg); }
.btn:active { transform: translateY(1px) scale(.992); }
.btn svg { flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background-color: var(--bee); color: var(--ink); --fill: var(--ink); }
.btn--primary:hover { color: var(--bee); }
.btn--ink { background-color: var(--ink); color: var(--bee); --fill: var(--bee); }
.btn--ink:hover { color: var(--ink); }
.btn--ghost {
  background-color: transparent; color: var(--ink);
  border-color: var(--ink); --fill: var(--ink);
}
.btn--ghost:hover { color: var(--cream); }
.band--rust .btn--ghost, .band--navy .btn--ghost {
  color: var(--cream); border-color: rgba(253, 252, 246, .6); --fill: var(--cream);
}
.band--rust .btn--ghost:hover { color: var(--rust); border-color: var(--cream); }
.band--navy .btn--ghost:hover { color: var(--navy); border-color: var(--cream); }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: .8125rem; border-radius: 10px; }
.btn--row { min-height: 44px; padding: 10px 16px; font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: clamp(26px, 3vw, 38px); }
.cta-note {
  font-size: .875rem; color: var(--muted); margin: 14px 0 0; font-style: italic;
}
.hero .cta-note, .band--rust .cta-note, .band--navy .cta-note { color: rgba(253, 252, 246, .86); }

/* -------------------------------------------------------------- header --- */
.alert {
  background: var(--navy); color: var(--cream);
  font-size: .78rem; font-weight: 600; letter-spacing: .012em;
  text-align: center; padding: 10px var(--gut); line-height: 1.45;
  margin: 0; max-width: none;
}
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.hdr__in {
  width: min(100% - var(--gut) * 2, 1340px); margin-inline: auto;
  min-height: var(--hdr-h);
  display: flex; align-items: center; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 800; font-size: 1.0625rem;
  letter-spacing: -.03em; margin-right: auto; flex: none;
  min-height: 44px; padding-right: 8px;
}
.brand__mark { width: 30px; height: 30px; border-radius: 7px; flex: none; }
.brand span { color: var(--rust); }

.nav { display: flex; gap: clamp(14px, 1.9vw, 30px); }
.nav a {
  position: relative; text-decoration: none;
  font-weight: 700; font-size: .875rem; letter-spacing: .005em;
  padding: 6px 0; color: var(--warm-black);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--rust); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--rust); }
.nav a:hover::after { transform: scaleX(1); }

.hdr__act { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }

/* burger — crafted, not three bare sticks */
.burger {
  display: none; position: relative;
  width: 46px; height: 46px; flex: none;
  background: transparent; border: 1.5px solid var(--border-bold);
  border-radius: var(--r); cursor: pointer;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.burger:hover { border-color: var(--rust); background: var(--grey-20); }
.burger i {
  position: absolute; left: 13px; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transform-origin: left center;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.burger i:nth-child(1) { top: 16px; }
.burger i:nth-child(2) { top: 22px; transform: scaleX(.72); }
.burger i:nth-child(3) { top: 28px; }
.burger:hover i { background: var(--rust); }
.burger:hover i:nth-child(2) { transform: scaleX(1); }
.burger[aria-expanded='true'] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mnav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 10px var(--gut) 22px;
}
.mnav.is-open { display: block; }
.mnav a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 52px; padding: 6px 2px;
  text-decoration: none; font-weight: 700; font-size: 1.0625rem;
  border-bottom: 1px solid var(--border);
}
.mnav a svg { color: var(--rust); }
.mnav .btn { width: 100%; margin-top: 18px; }

/* ---------------------------------------------------------------- hero --- */
.hero { background: var(--rust); color: var(--cream); padding-top: clamp(48px, 6vw, 92px); padding-bottom: clamp(96px, 11vw, 150px); }
.hero__in {
  display: grid; gap: clamp(30px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
}
.hero h1 { color: var(--cream); }
.hero h1 .hl { color: var(--bee); }
.hero__sub {
  font-family: var(--ui); font-weight: 800;
  font-size: clamp(1.25rem, 1.12rem + .45vw, 1.45rem);
  line-height: 1.3; letter-spacing: -.012em;
  color: var(--sage);
  margin: clamp(20px, 2.4vw, 30px) 0 clamp(18px, 2vw, 26px);
  max-width: 26ch;
}
.hero p { color: rgba(253, 252, 246, .9); max-width: 56ch; }
.hero__fig { margin: 0; position: relative; }
.hero__fig img {
  width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover;
  border-radius: var(--r-lg);
}
/* jump tiles — borrowed from the reference's category-tile row, pulled up
   over the hero band edge (broken grid) */
.tiles {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(-78px, -7vw, -56px);
  position: relative; z-index: 2;
}
.tile {
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
  min-height: 128px; padding: 18px 18px 16px;
  border-radius: var(--r); text-decoration: none;
  font-weight: 800; font-size: 1.0625rem; letter-spacing: -.012em; line-height: 1.2;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-radius .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-radius: var(--r-lg); }
.tile svg { opacity: .55; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.tile:hover svg { transform: translate(4px, -4px); opacity: 1; }
.tile--sage { background: var(--sage); color: var(--ink); }
.tile--bee { background: var(--bee); color: var(--ink); }
.tile--warm { background: var(--warm-white); color: var(--ink); }
.tile--navy { background: var(--navy); color: var(--cream); }

/* --------------------------------------------------------------- prose --- */
.prose h3 { margin-top: 2.1em; }
.prose h3:first-child { margin-top: 0; }
.prose > p + h3 { margin-top: 2.1em; }

.split {
  display: grid; gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
.split--7-5 { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
.split--5-7 { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
.split--sticky > :first-child { position: sticky; top: calc(var(--hdr-h) + 26px); }
.cols2 { columns: 2; column-gap: clamp(30px, 4vw, 60px); }
.cols2 > * { break-inside: avoid; }

figure.fig { margin: 0; }
.fig img {
  width: 100%; border-radius: var(--r-lg);
  object-fit: cover;
}
.fig--wide img { aspect-ratio: 16 / 10; }
.fig--sq img { aspect-ratio: 1 / 1; }
.fig--tall img { aspect-ratio: 4 / 5; }
.fig figcaption {
  margin-top: 12px; font-size: .8125rem; line-height: 1.45;
  color: var(--muted); max-width: 46ch;
}
.band--navy .fig figcaption, .band--rust .fig figcaption { color: rgba(253, 252, 246, .68); }
.fig--offset { margin-top: clamp(-64px, -5vw, -24px); }

/* pull-quote / expert tip — flat panel, no shadow, 1px rules only */
.tip {
  margin: clamp(30px, 3.4vw, 46px) 0 0;
  background: var(--navy); color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.1rem, 1rem + .55vw, 1.42rem); line-height: 1.4;
  letter-spacing: -.008em;
}
.tip strong { display: block; font-family: var(--ui); font-weight: 800; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bee); margin-bottom: 14px; }
.tip p { max-width: none; margin: 0; color: var(--cream); }

/* short CTA bar between long no-CTA stretches */
.strip {
  background: var(--bee); color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.2vw, 40px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  justify-content: space-between;
}
.strip p {
  margin: 0; max-width: 40ch; font-weight: 700;
  font-size: clamp(1.05rem, .98rem + .45vw, 1.35rem); line-height: 1.32; letter-spacing: -.012em;
}

/* --------------------------------------------------------------- table --- */
.tbl-wrap { border: 1.5px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; }
table.picks { width: 100%; border-collapse: collapse; font-size: .9375rem; }
table.picks caption { text-align: left; padding: 0 0 14px; font-size: .875rem; color: var(--muted); }
table.picks th, table.picks td { text-align: left; padding: 16px 18px; vertical-align: top; }
table.picks thead th {
  background: var(--ink); color: var(--cream);
  font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 800;
  white-space: nowrap;
}
table.picks tbody tr { border-top: 1px solid var(--border); transition: background-color .3s var(--ease); }
table.picks tbody tr:nth-child(odd) { background: var(--offwhite); }
table.picks tbody tr:hover { background: var(--warm-white); }
table.picks tbody th { font-weight: 800; font-size: 1rem; letter-spacing: -.012em; min-width: 12ch; }
table.picks td.act { text-align: right; }
.tier {
  display: inline-block; padding: 5px 11px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid transparent; white-space: nowrap;
}
.tier--budget { background: var(--sage); color: var(--ink); }
.tier--mid { background: transparent; border-color: var(--border-bold); color: var(--warm-black); }
.tier--premium { background: var(--bee); color: var(--ink); }
.tbl-note { margin: 14px 0 0; font-size: .875rem; font-style: italic; color: var(--muted); }

/* --------------------------------------------------------------- video --- */
.vid {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--r-lg); overflow: hidden; background: var(--navy-deep);
  border: 0; padding: 0; cursor: pointer; display: block;
}
.vid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: opacity .4s var(--ease), transform .6s var(--ease); }
.vid:hover img { opacity: .5; transform: scale(1.02); }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid__play {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--bee); color: var(--ink);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.vid:hover .vid__play { transform: scale(1.08); }
.vid__label {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--navy-deep); color: var(--cream);
  padding: 9px 14px; border-radius: 8px;
  font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}

/* ----------------------------------------------------------------- faq --- */
.faq { border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--border-bold); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px 2px; min-height: 44px;
  font-weight: 800; font-size: clamp(1rem, .96rem + .28vw, 1.15rem); line-height: 1.35;
  letter-spacing: -.012em;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--rust); }
.faq summary svg { flex: none; margin-top: 2px; transition: transform .3s var(--ease); color: var(--rust); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details[open] summary { color: var(--rust); }
.faq .ans { padding: 0 2px 24px; max-width: 72ch; }
.faq .ans p { margin: 0; color: var(--warm-black); }

/* -------------------------------------------------------------- footer --- */
.ft { background: var(--footer-bg); color: var(--offwhite); padding-block: clamp(52px, 6vw, 84px) 34px; }
.ft__top { display: grid; gap: clamp(30px, 4vw, 56px); grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); }
.ft .brand { color: var(--cream); margin-right: 0; }
.ft h2 { font-family: var(--ui); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--bee); margin: 0 0 16px; }
.ft p { color: rgba(248, 248, 244, .68); font-size: .9375rem; max-width: 40ch; }
.ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.ft ul a {
  display: inline-block; padding: 11px 0; text-decoration: none;
  font-size: .9375rem; color: rgba(248, 248, 244, .78);
  transition: color .3s var(--ease);
}
.ft ul a:hover { color: var(--bee); }
.ft__legal { margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; border-top: 1px solid #5c5851; }
.ft__legal p { font-size: .8125rem; line-height: 1.6; color: rgba(248, 248, 244, .6); max-width: 92ch; margin-bottom: .9em; }
.ft__copy { font-size: .8125rem; color: rgba(248, 248, 244, .5); margin: 0; }
.foot__legal {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(10px, 1.6vw, 22px); max-width: var(--wrap); margin: 18px auto 0;
  padding-top: 18px; border-top: 1px solid #5c5851;
}
.foot__legal a {
  font-size: .8125rem; color: rgba(248, 248, 244, .68); text-decoration: none;
  transition: color .3s var(--ease);
}
.foot__legal a:hover { color: var(--bee); }

/* ------------------------------------------------------------- legal --- */
.legal { background: var(--cream); }
.legal__in { max-width: 760px; margin-inline: auto; }
.legal__meta {
  font-family: var(--ui); font-size: .8125rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--rust);
  margin-bottom: 12px;
}
.legal__in h1 { margin-bottom: .5em; }
.legal__in h3 { margin-top: 1.6em; }
.legal__in ul { margin: 0 0 1.1em; padding-left: 1.2em; }
.legal__in li { margin-bottom: .4em; }
.legal__in a { color: var(--rust); text-decoration-color: rgba(149, 56, 32, .35); }
.legal__in a:hover { color: var(--rust-deep); }

/* ----------------------------------------------- persistent mobile CTA --- */
.stickycta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  transform: translateY(160%);
  transition: transform .45s var(--ease-out);
}
.stickycta.is-on { transform: translateY(0); }
.stickycta .btn { width: 100%; box-shadow: 0 6px 22px rgba(3, 3, 2, .22); }

/* -------------------------------------------------------------- motion --- */
.rv { opacity: 0; }
.rv-fig { clip-path: inset(0 0 100% 0); }
html.no-gsap .rv, html.no-gsap .rv-fig { opacity: 1; clip-path: none; }

/* --------------------------------------------------------- breakpoints --- */
@media (max-width: 1080px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .hero__in { grid-template-columns: minmax(0, 1fr); }
  .hero__fig { order: -1; }
  .hero__fig img { aspect-ratio: 16 / 10; }
  .split--sticky > :first-child { position: static; }
}
@media (max-width: 940px) {
  .nav { display: none; }
  .burger { display: block; }
  .split, .split--7-5, .split--5-7 { grid-template-columns: minmax(0, 1fr); }
  .cols2 { columns: 1; }
  .fig--offset { margin-top: 0; }
  .ft__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .stickycta { display: block; }
  body { padding-bottom: 0; }
}
@media (max-width: 860px) {
  /* comparison table → stacked cards, each keeping its own action button */
  .tbl-wrap { border: 0; border-radius: 0; overflow: visible; }
  table.picks, table.picks tbody, table.picks tr, table.picks th, table.picks td { display: block; width: 100%; }
  table.picks thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  table.picks tbody tr {
    border: 1.5px solid var(--ink); border-radius: var(--r-lg);
    padding: 20px; margin-bottom: 14px; background: var(--offwhite);
  }
  table.picks tbody tr:nth-child(odd) { background: var(--offwhite); }
  table.picks th, table.picks td { padding: 0; }
  table.picks tbody th { font-size: 1.15rem; margin-bottom: 14px; }
  table.picks td { padding-top: 10px; border-top: 1px solid var(--border); margin-top: 10px; }
  table.picks td::before {
    content: attr(data-l); display: block;
    font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 4px;
  }
  table.picks td.act { text-align: left; }
  table.picks td.act::before { content: none; }
  table.picks td.act .btn { width: 100%; margin-top: 4px; }
}
@media (max-width: 560px) {
  body { font-size: 1.0625rem; }
  .tiles { gap: 10px; margin-top: -48px; }
  .tile { min-height: 104px; font-size: .9375rem; padding: 14px; gap: 16px; }
  .ft__top { grid-template-columns: minmax(0, 1fr); }
  .strip { flex-direction: column; align-items: flex-start; }
  .strip .btn { width: 100%; }
  .cta-row .btn { width: 100%; }
  .vid__play { width: 62px; height: 62px; }
  .alert { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .rv { opacity: 1 !important; }
  .rv-fig { clip-path: none !important; }
  .stickycta { transition: none; }
}
