/* ==========================================================================
   Women Decoded - site styles
   Hand-written, no framework. Organised as:
     1. Tokens      2. Reset/base    3. Layout      4. Type
     5. Buttons     6. Header/nav    7. Hero        8. Packs & bulk
     9. Carousel   10. Cards/lists  11. Reviews    12. FAQ
    13. Footer     14. Buy bar      15. Utilities  16. Print
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------- */
:root {
  --indigo:        #4f46e5;
  --indigo-dark:   #4338ca;
  --indigo-darker: #3730a3;
  --indigo-tint:   #eef2ff;
  --indigo-pale:   #e0e7ff;

  --amber-bg:      #fffbeb;
  --amber-line:    #fde68a;
  --amber-ink:     #78350f;
  --yellow-bg:     #fefce8;
  --yellow-ink:    #854d0e;
  --yellow-chip:   #fef08a;
  --star:          #facc15;

  --green-bg:      #f0fdf4;
  --green-line:    #dcfce7;
  --green-ink:     #166534;
  --green:         #22c55e;

  --ink:           #111827;
  --ink-2:         #374151;
  --body:          #4b5563;
  --muted:         #6b7280;
  --faint:         #9ca3af;
  --line:          #e5e7eb;
  --line-2:        #d1d5db;
  --bg:            #f9fafb;
  --white:         #ffffff;

  --radius:        8px;
  --radius-lg:     12px;
  --radius-full:   999px;

  --shadow-sm:     0 1px 2px rgba(0,0,0,.05);
  --shadow:        0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);

  --header-h:      64px;
  --wrap:          1152px;
  --wrap-narrow:   768px;
  --wrap-mid:      960px;
}

/* 2. Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
/* Room for the sticky buy bar, only on pages that have one. */
body.has-buybar { padding-bottom: 84px; }
@media (min-width: 768px) { body.has-buybar { padding-bottom: 0; } }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-dark); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; list-style: none; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* 3. Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 16px; }
@media (min-width: 640px) { .wrap { padding-inline: 24px; } }
.wrap--mid    { max-width: var(--wrap-mid); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: 48px; }
@media (min-width: 768px) { .section { padding-block: 64px; } }
.section--tight  { padding-block: 32px; }
.section--white  { background: var(--white); }
.section--gray   { background: var(--bg); }
.section--tint   { background: var(--indigo-tint); }
.section--yellow { background: var(--yellow-bg); }
.section--indigo { background: var(--indigo-dark); color: var(--indigo-pale); }
.section--rule   { border-block: 1px solid var(--line); }
.section[id]     { scroll-margin-top: calc(var(--header-h) + 8px); }

.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: 1.875rem; }
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
.section-head p { margin-top: 12px; color: var(--muted); max-width: 42rem; margin-inline: auto; }
.section-head .rule { width: 96px; height: 4px; background: var(--indigo); margin: 16px auto 0; border-radius: 2px; }

.split { display: grid; gap: 32px; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* 4. Type --------------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 600; letter-spacing: 0; }
p + p { margin-top: 16px; }

.eyebrow {
  font-size: .8125rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.lede   { font-size: 1.125rem; }
.muted  { color: var(--muted); }
.small  { font-size: .875rem; }
.tiny   { font-size: .8125rem; }
.center { text-align: center; }
.prose > * + * { margin-top: 16px; }
.prose strong { color: var(--ink); }

/* 5. Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px;
  border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; line-height: 1.2; text-align: center;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--indigo); color: var(--white); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--indigo-dark); color: var(--white); }
.btn--outline { background: var(--white); color: var(--indigo-dark); border-color: var(--indigo); }
.btn--outline:hover { background: var(--indigo-tint); color: var(--indigo-dark); }
.btn--light { background: var(--white); color: var(--indigo-dark); }
.btn--light:hover { background: var(--bg); color: var(--indigo-darker); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn--quiet { background: var(--white); color: var(--ink-2); border-color: var(--line-2); }
.btn--quiet:hover { background: var(--bg); color: var(--ink); }
.btn--amazon {
  background: linear-gradient(#facc15, #eab308); color: #1f2937;
  border-color: #a16207; min-height: 44px; padding: 10px 18px; font-size: .875rem;
}
.btn--amazon:hover { background: linear-gradient(#eab308, #ca8a04); color: #1f2937; }
.btn--lg    { min-height: 56px; padding: 16px 32px; font-size: 1.0625rem; }
.btn--block { display: flex; width: 100%; }
.btn--sm    { min-height: 44px; padding: 10px 16px; font-size: .875rem; }

.btn-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .btn-row { flex-direction: row; flex-wrap: wrap; } }
.btn-row--center { justify-content: center; }

/* 6. Header / nav ------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; height: var(--header-h); }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 34px; width: auto; }
@media (min-width: 768px) { .nav__logo img { height: 46px; } }

.nav__links { display: none; }
@media (min-width: 900px) {
  .nav__links { display: flex; align-items: center; gap: 4px; }
}
.nav__link {
  padding: 8px 10px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
}
.nav__link:hover { color: var(--indigo); background: var(--bg); }

.nav__actions { display: flex; align-items: center; gap: 4px; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius); color: var(--ink-2);
}
.nav__toggle:hover { background: var(--bg); color: var(--indigo); }
@media (min-width: 900px) { .nav__toggle { display: none; } }

.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--white); }
.mobile-menu.is-open { display: block; }
@media (min-width: 900px) { .mobile-menu, .mobile-menu.is-open { display: none; } }
.mobile-menu a {
  display: block; padding: 14px 20px; font-weight: 500; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { background: var(--bg); color: var(--indigo); }

/* 7. Hero --------------------------------------------------------------- */
.hero { background: var(--white); padding-block: 24px 40px; }
@media (min-width: 768px) { .hero { padding-block: 48px 56px; } }
.hero__grid { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: minmax(0,1fr) minmax(0,1.6fr); gap: 48px; align-items: start; }
}
.hero__cover { display: flex; justify-content: center; }
@media (min-width: 768px) { .hero__cover { display: block; } }
.hero__cover img {
  width: 160px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .hero__cover img { width: 200px; } }
@media (min-width: 768px) { .hero__cover img { width: 100%; max-width: 320px; } }

.hero__body { text-align: center; }
@media (min-width: 768px) { .hero__body { text-align: left; } }
.hero__kicker { font-size: .875rem; color: var(--muted); margin-bottom: 8px; }
.hero h1 { font-size: 2.5rem; letter-spacing: -.03em; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.5rem; } }
.hero__sub { margin-top: 8px; font-size: 1.25rem; font-weight: 500; color: var(--ink-2); }
@media (min-width: 768px) { .hero__sub { font-size: 1.5rem; } }
.hero__intro { margin-top: 16px; font-size: 1.0625rem; }

/* Sample entries - the joke, above the fold */
.samples {
  margin-top: 20px; padding: 12px;
  background: var(--amber-bg); border: 1px solid var(--amber-line);
  border-radius: var(--radius-lg); text-align: left;
}
@media (min-width: 640px) { .samples { padding: 16px; } }
.sample {
  background: var(--white); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-sm);
}
.sample + .sample { margin-top: 10px; }
.sample dt { font-weight: 700; color: var(--ink); }
.sample dd { margin: 2px 0 0; font-size: .9375rem; color: var(--body); }
.samples__note { margin-top: 12px; font-size: .8125rem; color: var(--amber-ink); }
.samples__note a { color: var(--amber-ink); text-decoration: underline; font-weight: 500; }

.hero__buy { margin-top: 24px; }
@media (min-width: 640px) { .hero__buy .btn--block { display: inline-flex; width: auto; } }
.hero__prices { margin-top: 12px; font-size: .9375rem; color: var(--ink-2); }
.hero__alt { margin-top: 4px; font-size: .9375rem; color: var(--muted); }
.hero__alt a { text-decoration: underline; }

.facts {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.facts b { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); }
.facts span { font-size: .8125rem; color: var(--muted); }

/* Occasion chips */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.chip {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-full); padding: 8px 16px;
  font-size: .875rem; color: var(--ink-2);
}

/* 8. Packs & bulk ------------------------------------------------------- */
.pack {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; position: relative;
}
.pack--featured { border: 2px solid var(--indigo); box-shadow: var(--shadow-md); }
.pack__badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--indigo); color: var(--white);
  font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-full);
}
.pack__qty { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.pack__price { margin-top: 8px; font-size: 2.25rem; font-weight: 800; color: var(--ink); line-height: 1; }
.pack__each { margin-top: 6px; font-size: .875rem; color: var(--muted); }
.pack__why { margin-top: 16px; font-size: .9375rem; flex-grow: 1; }
.pack .btn { margin-top: 20px; }

.note {
  margin-top: 20px; padding: 12px 16px; border-radius: var(--radius);
  background: var(--amber-bg); border: 1px solid var(--amber-line);
  color: var(--amber-ink); font-size: .875rem; text-align: center;
}
.note[hidden] { display: none; }

.bulk { display: grid; gap: 24px; }
@media (min-width: 768px) { .bulk { grid-template-columns: 1fr auto; align-items: center; gap: 40px; } }
.bulk h2 { color: var(--white); font-size: 1.625rem; }
@media (min-width: 640px) { .bulk h2 { font-size: 2rem; } }
.bulk p { margin-top: 12px; }
.bulk__fine { margin-top: 8px; font-size: .875rem; color: #c7d2fe; }
.bulk__actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) and (max-width: 767px) { .bulk__actions { flex-direction: row; } }

/* 9. Carousel ----------------------------------------------------------- */
.carousel { position: relative; }
.carousel__window { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--white); }
.carousel__track { display: flex; transition: transform .5s ease-in-out; }
.carousel__slide { width: 100%; flex-shrink: 0; }
.carousel__slide img { width: 100%; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92); color: var(--ink-2);
  border-radius: var(--radius-full); box-shadow: var(--shadow-lg);
}
.carousel__btn:hover { background: var(--white); }
.carousel__btn--prev { left: 8px; }
.carousel__btn--next { right: 8px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel__dots button {
  width: 12px; height: 12px; border-radius: var(--radius-full);
  background: var(--line-2); transition: background-color .15s ease;
}
.carousel__dots button[aria-current="true"] { background: var(--indigo); }

/* 10. Cards & lists ----------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
}
.card--flat { background: var(--bg); box-shadow: none; }
.card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.card__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-full);
  background: var(--indigo-tint); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.125rem; }
.card h4 { margin-bottom: 12px; }
.card--panel { padding: 0; overflow: hidden; }
.card--panel > header { background: var(--indigo-darker); color: var(--white); padding: 16px 24px; }
.card--panel > header h3 { color: var(--white); }
.card--panel > div { padding: 24px; }

.list li { position: relative; padding-left: 26px; }
.list li + li { margin-top: 10px; }
.list--bullet li::before {
  content: "•"; position: absolute; left: 6px; top: -1px;
  color: var(--indigo); font-weight: 700;
}
.list--check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: var(--radius-full);
  background: var(--indigo-tint); color: var(--indigo);
  font-size: .6875rem; font-weight: 700; line-height: 18px; text-align: center;
}
.list--tick li::before {
  content: "✓"; position: absolute; left: 2px; top: 0;
  color: var(--green); font-weight: 700;
}
.list--num { counter-reset: n; }
.list--num li { counter-increment: n; padding-left: 44px; min-height: 32px; display: flex; align-items: center; }
.list--num li::before {
  content: counter(n); position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; border-radius: var(--radius-full);
  background: var(--yellow-chip); color: var(--yellow-ink);
  font-weight: 600; font-size: .875rem; line-height: 32px; text-align: center;
}

.callout {
  padding: 16px; border-radius: var(--radius);
  background: var(--indigo-tint); border-left: 4px solid var(--indigo);
  color: var(--indigo-darker);
}
.callout--good {
  background: var(--green-bg); border: 1px solid var(--green-line); border-left: 1px solid var(--green-line);
  color: var(--green-ink); display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.callout--good svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--green); }

.cta-box {
  background: var(--indigo); color: var(--white);
  border-radius: var(--radius-lg); padding: 24px; text-align: center; box-shadow: var(--shadow-lg);
}
.cta-box h4 { color: var(--white); font-size: 1.25rem; font-weight: 700; }
.cta-box p { margin: 8px 0 20px; color: var(--indigo-pale); }

.author { display: grid; gap: 32px; justify-items: center; text-align: center; }
@media (min-width: 768px) {
  .author { grid-template-columns: auto minmax(0, 36rem); align-items: center; text-align: left; justify-items: start; }
}
.author__photo {
  width: 176px; height: 176px; border-radius: var(--radius-full);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.author__photo img { width: 100%; height: 100%; object-fit: cover; }
.author h3 { margin-bottom: 4px; }
.author__role { color: var(--indigo-darker); margin-bottom: 12px; }
.author__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.author__link svg { width: 20px; height: 20px; }
.author__bio p { color: var(--indigo-darker); }

.shots { display: grid; gap: 24px; margin-top: 24px; }
@media (min-width: 768px) { .shots { grid-template-columns: 1fr 1fr; } }
.shot { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.shot img { width: 100%; height: 220px; object-fit: cover; }
.shot p { padding: 16px 20px; font-size: .9375rem; }

/* 11. Reviews ----------------------------------------------------------- */
.review { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.stars { display: flex; gap: 2px; color: var(--star); margin-bottom: 14px; }
.stars svg { width: 20px; height: 20px; }
.review__quote { font-style: italic; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review__avatar {
  width: 40px; height: 40px; border-radius: var(--radius-full); flex-shrink: 0;
  background: var(--indigo-tint); color: var(--indigo-darker);
  display: flex; align-items: center; justify-content: center;
}
.review__avatar svg { width: 22px; height: 22px; }
.review__who b { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); }
.review__who span { font-size: .875rem; color: var(--muted); }

.aside-band {
  margin-top: 40px; padding: 24px; border-radius: var(--radius-lg);
  background: var(--indigo-tint); display: grid; gap: 16px; align-items: center;
}
@media (min-width: 768px) { .aside-band { grid-template-columns: 1fr auto; gap: 24px; } }

/* 12. FAQ --------------------------------------------------------------- */
.faq { max-width: 56rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 16px 44px 16px 0; font-size: 1.0625rem; font-weight: 600; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--indigo);
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item summary:hover { color: var(--indigo); }
.faq__a { padding: 0 8px 18px 0; }

/* 13. Footer ------------------------------------------------------------ */
.site-footer { background: #f3f4f6; border-top: 1px solid var(--line); padding-block: 48px; }
.site-footer h3 {
  font-size: .8125rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 16px;
}
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__links li + li { margin-top: 8px; }
.footer__links a { font-size: .875rem; color: var(--body); }
.footer__links a:hover { color: var(--indigo); }
.footer__contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer__contact li + li { margin-top: 8px; }
.footer__contact svg { width: 20px; height: 20px; color: var(--faint); flex-shrink: 0; margin-top: 2px; }
.footer__contact a { font-size: .875rem; color: var(--body); }
.footer__contact a:hover { color: var(--indigo); }
.footer__brand { font-weight: 500; color: var(--ink-2); margin-bottom: 12px; }
.footer__note { font-size: .875rem; color: var(--body); }
.footer__bottom { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 32px; }
.footer__fine { font-size: .75rem; color: var(--muted); margin-bottom: 20px; }
.footer__legal { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .footer__legal { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__legal p { font-size: .75rem; color: var(--muted); }
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__legal nav a { font-size: .75rem; color: var(--muted); }
.footer__legal nav a:hover { color: var(--indigo); }

/* 14. Sticky buy bar (phones) ------------------------------------------- */
.buybar {
  position: fixed; inset: auto 0 0 0; z-index: 40;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -2px 10px rgba(0,0,0,.08);
  padding: 10px 16px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
@media (min-width: 768px) { .buybar { display: none; } }
.buybar b { display: block; font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.buybar span { font-size: .75rem; color: var(--muted); line-height: 1.25; }
.buybar .btn { flex: 1 1 auto; max-width: 62%; }

/* 15. Utilities --------------------------------------------------------- */
.right { text-align: right; }
.beta { font-weight: 400; opacity: .75; }
.faq--flush { margin-inline: 0; }
.mt-sm { margin-top: 8px; }
.stack-sm > * + * { margin-top: 8px; }
.stack    > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 32px; }
.mt-lg { margin-top: 32px; }
.mt-xl { margin-top: 40px; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }

/* Legal / long-form pages */
.legal { max-width: 48rem; margin-inline: auto; }
.legal h1 { font-size: 1.875rem; text-align: center; }
@media (min-width: 640px) { .legal h1 { font-size: 2.25rem; } }
.legal h2 { font-size: 1.375rem; margin-top: 32px; }
.legal h3 { font-size: 1.0625rem; margin-top: 20px; }
.legal p, .legal li { color: var(--body); }
.legal p { margin-top: 12px; }
.legal ul { margin-top: 12px; }
.legal ul li { position: relative; padding-left: 22px; }
.legal ul li + li { margin-top: 8px; }
.legal ul li::before { content: "•"; position: absolute; left: 4px; color: var(--indigo); font-weight: 700; }

/* 16. Print ------------------------------------------------------------- */
@media print {
  .site-header, .buybar, .carousel__btn, .carousel__dots { display: none !important; }
  body { padding: 0; }
}
