/* EstateTagSale, auction house honest. Warm paper, antique ivory, deep maroon.
   Light mode only. Contrast is built from type, rules, tints and photography. */

:root {
  --bg: #FBF8F2;
  --surface: #FFFFFF;
  --ink: #211D1A;
  --primary: #6E2B2B;
  --accent: #C9A87C;
  --muted: #6A6257;

  --paper: #F6F1E7;
  --paper-2: #F2ECDF;
  --ivory: #FDFBF6;
  --primary-tint: #F4E9E7;
  --primary-tint-2: #EADCD9;
  --accent-tint: #F6EDDF;
  --rule: #E1D7C4;
  --rule-strong: #CBBDA3;

  --ink-soft: #453D36;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  --r-sm: 3px; --r-md: 6px; --r-lg: 12px; --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(33, 29, 26, 0.06);
  --shadow-2: 0 10px 28px rgba(33, 29, 26, 0.08);
  --shadow-3: 0 18px 46px rgba(110, 43, 43, 0.10);

  --display: "Radley", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Alegreya Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --t-xs: 0.78rem; --t-sm: 0.9rem; --t-base: 1.06rem; --t-lg: 1.2rem;
  --t-xl: 1.5rem; --t-2xl: 1.9rem; --t-3xl: 2.4rem; --t-4xl: 3.1rem;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(90deg, rgba(201, 168, 124, 0.10) 0 1px, rgba(0,0,0,0) 1px 46px),
    repeating-linear-gradient(0deg, rgba(110, 43, 43, 0.045) 0 1px, rgba(0,0,0,0) 1px 30px);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-base);
  line-height: 1.62;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.16; color: var(--ink); margin: 0 0 var(--sp-4); letter-spacing: 0.002em; }
h1 { font-size: clamp(2.1rem, 5.2vw, var(--t-4xl)); }
h2 { font-size: clamp(1.65rem, 3.6vw, var(--t-3xl)); }
h3 { font-size: var(--t-xl); }
h4 { font-size: var(--t-lg); }
p { margin: 0 0 var(--sp-4); }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #55201F; }
img { max-width: 100%; height: auto; }
ul { margin: 0 0 var(--sp-4); padding-left: 1.15rem; }
li { margin-bottom: var(--sp-2); }
strong { font-weight: 700; }
small { font-size: var(--t-sm); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-5); }
.narrow { max-width: 780px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -60px; z-index: 100;
  background: var(--surface); color: var(--primary);
  border: 2px solid var(--primary); border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-4); font-weight: 700;
  transition: top 140ms ease;
}
.skip-link:focus { top: var(--sp-3); }

/* ---------- lot number / catalogue eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--body); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}

/* ---------- tag shape ---------- */
.tag {
  position: relative; display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 6px 14px 6px 26px;
  background: var(--accent-tint);
  border: 1px solid var(--rule-strong);
  color: var(--ink-soft);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
}
.tag::before {
  content: ""; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--body); font-weight: 700; font-size: var(--t-base);
  padding: 13px 24px; border-radius: var(--r-md); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.btn-primary { background-color: var(--primary); color: #FFFFFF; box-shadow: var(--shadow-2); }
.btn-primary:hover { background-color: color-mix(in srgb, var(--primary) 88%, var(--ink)); color: #FFFFFF; transform: translateY(-1px); }
.btn-ghost { background-color: var(--surface); color: var(--primary); border-color: var(--rule-strong); }
.btn-ghost:hover { background-color: var(--primary-tint); color: var(--primary); }
.btn-sm { padding: 9px 16px; font-size: var(--t-sm); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background-color: var(--ivory);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-1); border-bottom-color: var(--rule-strong); }
.header-inner { display: flex; align-items: center; gap: var(--sp-5); min-height: 70px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--display); font-size: 1.3rem; }
.wordmark svg { flex: none; }
.wordmark b { font-weight: 400; }
.wordmark span { color: var(--primary); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
.main-nav a {
  text-decoration: none; color: var(--ink-soft); font-size: var(--t-sm);
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--primary); border-bottom-color: var(--accent); }
.header-cta { flex: none; }
.nav-toggle {
  display: none; margin-left: auto; background-color: var(--surface); border: 1.5px solid var(--rule-strong);
  border-radius: var(--r-md); padding: 8px 10px; cursor: pointer; color: var(--primary);
}

/* ---------- sections ---------- */
section { padding: var(--sp-9) 0; }
.band-paper { background-color: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.band-surface { background-color: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-head { max-width: 720px; margin-bottom: var(--sp-7); }
.section-head p { color: var(--muted); font-size: var(--t-lg); }

/* ---------- hero ---------- */
.hero { padding: var(--sp-8) 0 var(--sp-9); }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: var(--sp-8); align-items: center; }
.hero h1 { margin-bottom: var(--sp-5); }
.hero .lede { font-size: var(--t-lg); color: var(--ink-soft); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin: var(--sp-6) 0 var(--sp-6); }
.hero-figure { position: relative; }
.hero-figure img {
  display: block; width: 100%; border-radius: var(--r-lg);
  border: 1px solid var(--rule-strong); box-shadow: var(--shadow-3);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid var(--accent); border-radius: var(--r-lg);
}
.swing-tag {
  position: absolute; right: 18px; top: 18px;
  background-color: var(--ivory); border: 1px solid var(--rule-strong);
  padding: 10px 16px 10px 30px; border-radius: 2px;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 18px 100%, 0 50%);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); box-shadow: var(--shadow-1);
  transform-origin: 100% 0; animation: swing 1500ms ease-out 500ms 1;
}
@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-3.4deg); }
  50% { transform: rotate(2.2deg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

.trust-strip { display: flex; flex-wrap: wrap; gap: var(--sp-5); border-top: 1px solid var(--rule); padding-top: var(--sp-5); }
.trust-strip div { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--t-sm); color: var(--muted); font-weight: 600; }
.trust-strip svg { flex: none; }

/* ---------- ledger rows ---------- */
.ledger { border: 1px solid var(--rule-strong); border-radius: var(--r-md); overflow: hidden; background-color: var(--surface); }
.ledger-row { display: grid; grid-template-columns: 76px 1fr; gap: var(--sp-5); padding: var(--sp-5) var(--sp-5); border-bottom: 1px solid var(--rule); }
.ledger-row:last-child { border-bottom: 0; }
.ledger-row:nth-child(even) { background-color: var(--paper-2); }
.ledger-row .lot { font-family: var(--display); font-size: 1.7rem; color: var(--primary); border-right: 1px solid var(--rule-strong); }
.ledger-row h3 { margin-bottom: 6px; }
.ledger-row p { margin: 0; color: var(--muted); }

/* ---------- cards ---------- */
.grid { display: grid; gap: var(--sp-5); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background-color: var(--surface);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--primary);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-1);
}
.card h3 { font-size: var(--t-lg); }
.card p { color: var(--muted); margin-bottom: 0; }
.card .cost { display: block; margin-top: var(--sp-3); font-weight: 700; color: var(--primary); font-size: var(--t-sm); letter-spacing: 0.04em; }

.feature { background-color: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md); padding: var(--sp-5); }
.feature .ico {
  width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: var(--sp-4);
  border: 1px solid var(--rule-strong); border-radius: var(--r-sm); background-color: var(--accent-tint);
}
.feature svg { display: block; }

/* ---------- outcomes ---------- */
.outcome { background-color: var(--ivory); border: 1px solid var(--rule); border-left: 4px solid var(--accent); border-radius: var(--r-sm); padding: var(--sp-5); }
.outcome .num { font-family: var(--display); font-size: 2.6rem; color: var(--primary); line-height: 1; display: block; margin-bottom: var(--sp-3); }
.outcome p { margin-bottom: 0; color: var(--muted); }

/* ---------- proof ---------- */
.testimonial {
  background-color: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5) var(--sp-5); margin: 0; position: relative;
}
.testimonial::before {
  content: ""; position: absolute; top: -1px; left: var(--sp-5); width: 54px; height: 4px; background-color: var(--primary);
}
.testimonial p { font-size: var(--t-lg); font-family: var(--display); color: var(--ink); }
.testimonial footer { font-size: var(--t-sm); color: var(--muted); border-top: 1px solid var(--rule); padding-top: var(--sp-3); }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--ink); display: block; }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: var(--sp-7); border: 1px solid var(--rule-strong); border-radius: var(--r-md); background-color: var(--paper); }
.metrics div { padding: var(--sp-5); border-right: 1px solid var(--rule); text-align: center; }
.metrics div:last-child { border-right: 0; }
.metrics b { display: block; font-family: var(--display); font-size: 2.1rem; color: var(--primary); font-weight: 400; }
.metrics span { font-size: var(--t-sm); color: var(--muted); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); align-items: start; }
.plan { background-color: var(--surface); border: 1px solid var(--rule-strong); border-radius: var(--r-md); padding: var(--sp-6) var(--sp-5); position: relative; }
.plan.is-featured { border: 2px solid var(--primary); background-color: var(--ivory); box-shadow: var(--shadow-2); }
.plan .rec {
  position: absolute; top: -14px; left: var(--sp-5);
  background-color: var(--primary); color: #FFFFFF; font-size: var(--t-xs);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 5px 12px; border-radius: var(--r-sm);
}
.plan h3 { font-size: var(--t-xl); margin-bottom: var(--sp-2); }
.plan .amount { font-family: var(--display); font-size: 2.7rem; color: var(--ink); line-height: 1; }
.plan .per { color: var(--muted); font-size: var(--t-sm); }
.plan ul { list-style: none; padding: 0; margin: var(--sp-5) 0; border-top: 1px solid var(--rule); }
.plan li { padding: 9px 0 9px 26px; border-bottom: 1px solid var(--rule); position: relative; font-size: var(--t-sm); color: var(--ink-soft); margin: 0; }
.plan li::before { content: ""; position: absolute; left: 4px; top: 17px; width: 9px; height: 9px; border: 1.5px solid var(--primary); border-radius: 2px; }
.plan .btn { width: 100%; }
.billing-note { margin-top: var(--sp-5); font-size: var(--t-sm); color: var(--muted); text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--rule-strong); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--rule-strong); }
.faq-q {
  width: 100%; text-align: left; background-color: transparent; border: 0; cursor: pointer;
  font-family: var(--display); font-size: var(--t-lg); color: var(--ink);
  padding: var(--sp-5) 44px var(--sp-5) 0; position: relative;
}
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg); transition: transform 200ms ease;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { padding: 0 0 var(--sp-5); color: var(--muted); max-width: 68ch; }
.faq-a[hidden] { display: none; }

/* ---------- form ---------- */
.form-shell { background-color: var(--surface); border: 1px solid var(--rule-strong); border-radius: var(--r-md); padding: var(--sp-7) var(--sp-6); box-shadow: var(--shadow-2); }
.field { margin-bottom: var(--sp-5); }
.field label { display: block; font-weight: 700; font-size: var(--t-sm); margin-bottom: 6px; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: var(--t-base); color: var(--ink);
  background-color: var(--ivory); border: 1.5px solid var(--rule-strong); border-radius: var(--r-sm);
  padding: 11px 13px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field [aria-invalid="true"] { border-color: #8C2F2F; }
.err { display: block; color: #8C2F2F; font-size: var(--t-sm); font-weight: 600; margin-top: 5px; }
.err[hidden] { display: none; }
.consent { display: flex; gap: var(--sp-3); align-items: flex-start; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 4px; }
.consent label { font-weight: 400; font-size: var(--t-sm); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-5); }
.form-note { margin-top: var(--sp-4); font-size: var(--t-sm); color: var(--muted); }

/* ---------- author byline ---------- */
.byline { border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong); padding: var(--sp-5) 0; margin-top: var(--sp-8); font-size: var(--t-sm); color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background-color: var(--paper-2); border-top: 3px solid var(--primary); padding: var(--sp-8) 0 var(--sp-5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); }
.footer-col h2, .footer-col h3 { font-size: var(--t-sm); text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--body); font-weight: 700; color: var(--primary); margin-bottom: var(--sp-4); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: var(--t-sm); }
.footer-col a:hover { color: var(--primary); text-decoration: underline; }
.footer-col p { font-size: var(--t-sm); color: var(--muted); }
.socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--rule-strong); border-radius: var(--r-sm); background-color: var(--surface); }
.socials a:hover { background-color: var(--primary-tint); }
.footer-base { margin-top: var(--sp-7); border-top: 1px solid var(--rule-strong); padding-top: var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; font-size: var(--t-sm); color: var(--muted); }

/* ---------- prose pages ---------- */
.prose { max-width: 800px; }
.prose h2 { margin-top: var(--sp-7); font-size: var(--t-2xl); }
.prose h3 { margin-top: var(--sp-5); }
.prose dl { border: 1px solid var(--rule-strong); border-radius: var(--r-md); background-color: var(--surface); padding: var(--sp-5); }
.prose dt { font-weight: 700; margin-top: var(--sp-3); }
.prose dd { margin: 0 0 var(--sp-2); color: var(--muted); }
.portrait { float: none; border: 1px solid var(--rule-strong); border-radius: var(--r-md); box-shadow: var(--shadow-1); }
.author-head { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-6); align-items: start; }
.map-group { background-color: var(--surface); border: 1px solid var(--rule); border-left: 4px solid var(--accent); border-radius: var(--r-sm); padding: var(--sp-5); margin-bottom: var(--sp-5); }
.map-group li { color: var(--muted); }

/* ---------- reveal motion, catalogue rows ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; width: 100%; order: 3; margin-left: 0; }
  .main-nav.is-open { display: block; padding-bottom: var(--sp-5); }
  .main-nav ul { flex-direction: column; gap: var(--sp-4); }
  .header-inner { flex-wrap: wrap; }
  .header-cta { display: none; }
  .g-3, .g-2, .price-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .author-head { grid-template-columns: 1fr; }
  section { padding: var(--sp-8) 0; }
}
@media (max-width: 560px) {
  .g-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: 1fr; gap: var(--sp-3); }
  .ledger-row .lot { border-right: 0; border-bottom: 1px solid var(--rule-strong); padding-bottom: var(--sp-2); }
  .swing-tag { display: none; }
}

@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;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   THE TAG ROOM, the magazine. Light only, built from the tokens above:
   catalogue rules, tag shapes, ledger tints and the same two typefaces.
   ================================================================ */

/* ---------- magazine masthead, shared by the index and article pages ---------- */
.mag-masthead { padding: var(--sp-8) 0 var(--sp-7); border-bottom: 1px solid var(--rule); }
.mag-masthead .standfirst { max-width: 40em; }
.crumbs { font-size: var(--t-sm); color: var(--muted); margin-bottom: var(--sp-5); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: 0; padding: 0; }
.crumbs li { margin: 0; display: inline-flex; align-items: center; gap: var(--sp-2); }
.crumbs li + li::before { content: "/"; color: var(--rule-strong); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--primary); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 600; }

.standfirst {
  font-family: var(--display); font-size: var(--t-lg); line-height: 1.5;
  color: var(--ink-soft); max-width: 34em;
}

/* ---------- index grid ---------- */
.mag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6) var(--sp-5); }

.mag-card {
  display: flex; flex-direction: column;
  background-color: var(--surface);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--primary);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.mag-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.mag-card .shot { display: block; margin: 0; border-bottom: 1px solid var(--rule); }
.mag-card .shot img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.mag-card .body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.mag-card h2, .mag-card h3 { font-size: var(--t-lg); margin: 0; line-height: 1.22; }
.mag-card h2 a, .mag-card h3 a { color: var(--ink); text-decoration: none; }
.mag-card h2 a:hover, .mag-card h3 a:hover { color: var(--primary); text-decoration: underline; }
.mag-card p { color: var(--muted); margin: 0; font-size: var(--t-sm); }
.mag-meta {
  margin-top: auto; padding-top: var(--sp-3); border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3);
  font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.mag-meta span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.mag-meta span + span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background-color: var(--accent); }

.mag-card.lead { grid-column: 1 / -1; flex-direction: row; align-items: stretch; border-top-width: 4px; }
.mag-card.lead .shot { flex: 0 0 54%; border-bottom: 0; border-right: 1px solid var(--rule); }
.mag-card.lead .shot img { height: 100%; aspect-ratio: auto; min-height: 320px; }
.mag-card.lead .body { padding: var(--sp-7) var(--sp-6); gap: var(--sp-4); justify-content: center; }
.mag-card.lead h2 { font-size: clamp(1.5rem, 2.6vw, var(--t-2xl)); }
.mag-card.lead p { font-size: var(--t-base); }

/* ---------- article page ---------- */
.mag-article { padding-top: var(--sp-7); padding-bottom: var(--sp-9); }
.mag-head { max-width: 820px; }
.mag-head h1 { margin-bottom: var(--sp-4); }
.mag-head .standfirst { max-width: 36em; margin-bottom: var(--sp-5); }

.mag-byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2) var(--sp-4);
  border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong);
  padding: var(--sp-4) 0; font-size: var(--t-sm); color: var(--muted); max-width: 820px;
}
.mag-byline a { font-weight: 700; }
.mag-byline .sep { width: 1px; height: 14px; background-color: var(--rule-strong); }

.mag-figure { margin: var(--sp-6) 0 var(--sp-7); }
.mag-figure img {
  display: block; width: 100%; border-radius: var(--r-lg);
  border: 1px solid var(--rule-strong); box-shadow: var(--shadow-2);
}
.mag-figure figcaption { margin-top: var(--sp-3); font-size: var(--t-sm); color: var(--muted); }

/* body typography, measure held between 64 and 75 characters */
.mag-body { max-width: 68ch; font-size: 1.09rem; line-height: 1.72; }
.mag-body p { margin: 0 0 var(--sp-5); }
.mag-body h2 { font-size: var(--t-2xl); margin: var(--sp-8) 0 var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--rule); }
.mag-body h3 { font-size: var(--t-xl); margin: var(--sp-6) 0 var(--sp-3); }
.mag-body ul, .mag-body ol { margin: 0 0 var(--sp-5); padding-left: 1.3rem; }
.mag-body li { margin-bottom: var(--sp-3); }
.mag-body blockquote {
  margin: var(--sp-6) 0; padding: var(--sp-5) var(--sp-5) var(--sp-4);
  background-color: var(--paper); border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--display); font-size: var(--t-lg); color: var(--ink);
}
.mag-body blockquote p:last-child { margin-bottom: 0; }
.mag-body table { width: 100%; border-collapse: collapse; margin: 0 0 var(--sp-6); font-size: var(--t-sm); }
.mag-body caption { text-align: left; font-weight: 700; color: var(--muted); padding-bottom: var(--sp-2); }
.mag-body th, .mag-body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); }
.mag-body thead th { background-color: var(--paper-2); border-bottom: 1px solid var(--rule-strong); font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }
.mag-body tbody tr:nth-child(even) { background-color: var(--ivory); }

.inline-read {
  margin: var(--sp-6) 0; padding: var(--sp-4) var(--sp-5);
  background-color: var(--accent-tint); border: 1px solid var(--rule-strong);
  border-left: 4px solid var(--accent); border-radius: var(--r-sm);
  font-size: var(--t-sm); font-weight: 600; color: var(--ink-soft);
}
.inline-read a { font-weight: 700; }

/* ---------- call to action ---------- */
.mag-cta {
  max-width: 68ch; margin: var(--sp-8) 0 0;
  background-color: var(--ivory); border: 1px solid var(--rule-strong);
  border-top: 3px solid var(--primary); border-radius: var(--r-md);
  padding: var(--sp-6); box-shadow: var(--shadow-1);
}
.mag-cta h2 { font-size: var(--t-xl); margin-bottom: var(--sp-3); }
.mag-cta p { color: var(--muted); margin-bottom: var(--sp-5); }

/* ---------- author box ---------- */
.mag-author {
  max-width: 68ch; margin: var(--sp-7) 0 0;
  display: grid; grid-template-columns: 108px 1fr; gap: var(--sp-5);
  background-color: var(--paper); border: 1px solid var(--rule);
  border-left: 4px solid var(--accent); border-radius: var(--r-sm);
  padding: var(--sp-5);
}
.mag-author img { display: block; width: 108px; height: 108px; object-fit: cover; border-radius: var(--r-md); border: 1px solid var(--rule-strong); }
.mag-author h2 { font-size: var(--t-lg); margin-bottom: var(--sp-2); }
.mag-author p { font-size: var(--t-sm); color: var(--muted); margin-bottom: var(--sp-3); }

/* ---------- read also ---------- */
.mag-related { margin-top: var(--sp-9); border-top: 1px solid var(--rule-strong); padding-top: var(--sp-6); }
.mag-related h2 { font-size: var(--t-2xl); margin-bottom: var(--sp-5); }
.mag-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.rel-card {
  display: flex; flex-direction: column;
  background-color: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-1);
}
.rel-card:hover { box-shadow: var(--shadow-2); }
.rel-card img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: 1px solid var(--rule); }
.rel-card .body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.rel-card h3 { font-size: var(--t-base); line-height: 1.28; margin: 0; }
.rel-card h3 a { color: var(--ink); text-decoration: none; }
.rel-card h3 a:hover { color: var(--primary); text-decoration: underline; }
.rel-card p { font-size: var(--t-sm); color: var(--muted); margin: 0; }
.rel-card time { margin-top: auto; padding-top: var(--sp-3); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* ---------- home page magazine strip ---------- */
.mag-strip-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.mag-strip-head p { color: var(--muted); font-size: var(--t-lg); max-width: 46em; margin: 0; }
.mag-more { margin-top: var(--sp-6); }

/* ---------- author page article list ---------- */
.mag-list { list-style: none; padding: 0; margin: var(--sp-5) 0 0; border-top: 1px solid var(--rule-strong); max-width: 860px; }
.mag-list li { margin: 0; padding: var(--sp-4) 0; border-bottom: 1px solid var(--rule); }
.mag-list a { font-family: var(--display); font-size: var(--t-lg); text-decoration: none; color: var(--ink); }
.mag-list a:hover { color: var(--primary); text-decoration: underline; }
.mag-list time { display: block; font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 6px; }

/* ---------- magazine responsive ---------- */
@media (max-width: 1000px) {
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
  .mag-card.lead .shot { flex-basis: 46%; }
  .mag-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .mag-grid { grid-template-columns: 1fr; }
  .mag-card.lead { flex-direction: column; }
  .mag-card.lead .shot { flex: none; border-right: 0; border-bottom: 1px solid var(--rule); }
  .mag-card.lead .shot img { aspect-ratio: 3 / 2; min-height: 0; }
  .mag-card.lead .body { padding: var(--sp-5); }
  .mag-related-grid { grid-template-columns: 1fr; }
  .mag-article { padding-top: var(--sp-6); }
}
@media (max-width: 560px) {
  .mag-body { font-size: 1.04rem; }
  .mag-author { grid-template-columns: 1fr; }
  .mag-author img { width: 96px; height: 96px; }
  .mag-cta { padding: var(--sp-5); }
  .mag-figure img { border-radius: var(--r-md); }
  .mag-byline { gap: var(--sp-2); }
  .mag-byline .sep { display: none; }
}


/* Network column: five sibling products, rotated so every site is linked the same
   number of times. Sits in the footer link grid and inherits its type and colour. */
.site-network ul { list-style: none; margin: 0; padding: 0; }
.site-network li + li { margin-top: 0.4rem; }
.site-network a { text-decoration: none; border-bottom: 1px solid transparent; }
.site-network a:hover, .site-network a:focus-visible { border-bottom-color: currentColor; }

/* nx-expansion-v1 */
/* Expansion pages: comparisons, free tools, working documents.
   Namespaced so nothing here can reach the original page styles. */
:root{--nx-bg:#FBF8F2;--nx-surface:#FFFFFF;--nx-soft:#F3ECE6;--nx-ink:#211D1A;
    --nx-ink-soft:#5E5A56;--nx-muted:#6A6257;--nx-line:#DCD9D4;--nx-line-2:#C2BFBA;
    --nx-primary:#6E2B2B;--nx-btn:#6E2B2B;--nx-btn-ink:#FFFFFF;--nx-ghost:#6E2B2B;
    --nx-accent:#C9A87C;--nx-accent-ink:#101418;--nx-tint:#F6F1EA;
    --nx-display:'Radley',Georgia,serif;--nx-body:'Alegreya Sans',system-ui,-apple-system,'Segoe UI',sans-serif}
.nx{background:var(--nx-bg);color:var(--nx-ink);font-family:var(--nx-body)}
.nx *,.nx *::before,.nx *::after{box-sizing:border-box}
.nx-wrap{width:min(1140px,92vw);margin:0 auto}
.nx-narrow{width:min(760px,92vw);margin:0 auto}
.nx h1,.nx h2,.nx h3{font-family:var(--nx-display);color:var(--nx-ink);line-height:1.16;
    letter-spacing:-.01em;margin:0 0 .5em}
.nx h1{font-size:clamp(2rem,1.3rem + 2.6vw,3.1rem)}
.nx h2{font-size:clamp(1.4rem,1.05rem + 1.3vw,2.05rem)}
.nx h3{font-size:clamp(1.08rem,.98rem + .5vw,1.35rem)}
.nx p{margin:0 0 1.05em;line-height:1.68;color:var(--nx-ink-soft)}
.nx a{color:var(--nx-ghost)}
.nx a:hover{color:var(--nx-ink)}
.nx :focus-visible{outline:3px solid var(--nx-btn);outline-offset:2px;border-radius:4px}

.nx-crumb{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;font-size:.83rem;
    color:var(--nx-muted);margin:0 0 1.4rem;padding:0;list-style:none}
.nx-crumb a{color:var(--nx-muted);text-decoration:none;border-bottom:1px solid var(--nx-line-2)}
.nx-crumb a:hover{color:var(--nx-ink)}
.nx-crumb span[aria-hidden]{opacity:.55}

.nx-hero{padding:clamp(2.2rem,1rem + 4vw,4rem) 0 clamp(1.6rem,1rem + 2vw,2.6rem);
    background:linear-gradient(180deg,var(--nx-soft),var(--nx-bg));border-bottom:1px solid var(--nx-line)}
.nx-eyebrow{font-family:var(--nx-body);font-size:.76rem;font-weight:700;letter-spacing:.14em;
    text-transform:uppercase;color:var(--nx-muted);margin:0 0 .7rem}
.nx-lede{font-size:clamp(1.03rem,.97rem + .35vw,1.2rem);color:var(--nx-ink-soft);max-width:62ch;margin:0 0 1.2rem}
.nx-hero-body{max-width:74ch}
.nx-hero-body p{margin-bottom:.9em}

.nx-band{padding:clamp(2rem,1.2rem + 2.6vw,3.4rem) 0}
.nx-band-alt{background:var(--nx-soft);border-block:1px solid var(--nx-line)}
.nx-body{max-width:74ch}
.nx-body h2{margin-top:1.7em}
.nx-body h2:first-child{margin-top:0}

.nx-btn,a.nx-btn,button.nx-btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
    padding:.82rem 1.35rem;border-radius:10px;border:2px solid var(--nx-btn);
    background:var(--nx-btn);color:var(--nx-btn-ink);font-family:var(--nx-body);font-weight:700;
    font-size:.97rem;line-height:1.1;text-decoration:none;cursor:pointer;
    transition:transform .15s ease,filter .15s ease}
.nx-btn:hover,a.nx-btn:hover,button.nx-btn:hover{filter:brightness(1.08);transform:translateY(-1px);color:var(--nx-btn-ink)}
.nx-btn-ghost,a.nx-btn-ghost,button.nx-btn-ghost{background:transparent;color:var(--nx-ghost);border-color:var(--nx-line-2)}
.nx-btn-ghost:hover,a.nx-btn-ghost:hover,button.nx-btn-ghost:hover{color:var(--nx-ink);border-color:var(--nx-btn)}
.nx-actions{display:flex;flex-wrap:wrap;gap:.7rem;margin:1.3rem 0 0}

.nx-grid{display:grid;gap:1.1rem;grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}
.nx-card{background:var(--nx-surface);border:1px solid var(--nx-line);border-radius:14px;
    padding:1.35rem 1.35rem 1.5rem;box-shadow:0 1px 2px rgba(16,20,24,.05), 0 8px 24px rgba(16,20,24,.06);display:flex;flex-direction:column}
.nx-card h2,.nx-card h3{margin-bottom:.45em;font-size:clamp(1.08rem,1rem + .35vw,1.28rem)}
.nx-card h2 a,.nx-card h3 a{text-decoration:none;border-bottom:2px solid var(--nx-tint)}
.nx-card h2 a:hover,.nx-card h3 a:hover{border-bottom-color:var(--nx-btn)}
.nx-card p{font-size:.96rem}
.nx-card-go{margin-top:auto;padding-top:.4rem;font-weight:700}
.nx-kicker{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.1em;
    text-transform:uppercase;background:var(--nx-tint);color:var(--nx-ink);
    border-radius:999px;padding:.3rem .66rem;margin:0 0 .8rem}

.nx-verdict{background:var(--nx-surface);border:1px solid var(--nx-line);
    border-left:5px solid var(--nx-btn);border-radius:12px;padding:1.3rem 1.4rem;margin:0 0 1.8rem}
.nx-verdict p:last-child{margin-bottom:0}

.nx-tablewrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--nx-line);
    border-radius:12px;background:var(--nx-surface)}
.nx-table{width:100%;border-collapse:collapse;min-width:640px;font-size:.95rem}
.nx-table caption{text-align:left;padding:.9rem 1rem;color:var(--nx-muted);font-size:.84rem}
.nx-table th,.nx-table td{padding:.8rem 1rem;text-align:left;vertical-align:top;
    border-top:1px solid var(--nx-line);color:var(--nx-ink-soft)}
.nx-table thead th{background:var(--nx-soft);color:var(--nx-ink);font-family:var(--nx-body);
    font-weight:700;border-top:0;position:sticky;top:0}
.nx-table tbody th{font-weight:700;color:var(--nx-ink);width:26%}
.nx-table tbody tr:nth-child(even) td,.nx-table tbody tr:nth-child(even) th{background:var(--nx-soft)}

.nx-two{display:grid;gap:1.1rem;grid-template-columns:repeat(auto-fit,minmax(290px,1fr))}
.nx-list{list-style:none;margin:0;padding:0}
.nx-list li{position:relative;padding:0 0 .7rem 1.5rem;line-height:1.6;color:var(--nx-ink-soft)}
.nx-list li::before{content:"";position:absolute;left:0;top:.58em;width:.55rem;height:.55rem;
    border-radius:2px;background:var(--nx-btn)}
.nx-list-alt li::before{background:var(--nx-muted)}

.nx-faq{border:1px solid var(--nx-line);border-radius:12px;background:var(--nx-surface);overflow:hidden}
.nx-faq details{border-top:1px solid var(--nx-line)}
.nx-faq details:first-of-type{border-top:0}
.nx-faq summary{cursor:pointer;padding:1rem 1.2rem;font-family:var(--nx-display);font-weight:600;
    font-size:1.02rem;color:var(--nx-ink);list-style:none;display:flex;justify-content:space-between;gap:1rem}
.nx-faq summary::-webkit-details-marker{display:none}
.nx-faq summary::after{content:"+";font-family:var(--nx-body);font-weight:700;color:var(--nx-muted)}
.nx-faq details[open] summary::after{content:"\2212"}
.nx-faq details[open] summary{color:var(--nx-ghost)}
.nx-faq .nx-answer{padding:0 1.2rem 1.1rem}
.nx-faq .nx-answer p:last-child{margin-bottom:0}

.nx-calc{display:grid;gap:1.3rem;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);align-items:start}
@media (max-width:880px){.nx-calc{grid-template-columns:1fr}}
.nx-fields{background:var(--nx-surface);border:1px solid var(--nx-line);border-radius:14px;
    padding:1.3rem;box-shadow:0 1px 2px rgba(16,20,24,.05), 0 8px 24px rgba(16,20,24,.06)}
.nx-field{margin:0 0 1.05rem}
.nx-field:last-child{margin-bottom:0}
.nx-field label{display:block;font-weight:700;font-size:.93rem;color:var(--nx-ink);margin:0 0 .35rem}
.nx-inputline{display:flex;align-items:stretch;border:1px solid var(--nx-line-2);border-radius:9px;
    background:var(--nx-bg);overflow:hidden}
.nx-inputline .nx-unit{display:flex;align-items:center;padding:0 .7rem;background:var(--nx-soft);
    color:var(--nx-muted);font-size:.86rem;font-weight:700;border-right:1px solid var(--nx-line-2)}
.nx-inputline .nx-unit-r{border-right:0;border-left:1px solid var(--nx-line-2)}
.nx-field input[type=number]{flex:1;min-width:0;border:0;background:transparent;
    padding:.62rem .7rem;font-family:var(--nx-body);font-size:1rem;color:var(--nx-ink)}
.nx-field input[type=number]:focus{outline:0}
.nx-inputline:focus-within{border-color:var(--nx-btn);box-shadow:0 0 0 3px var(--nx-tint)}
.nx-help{margin:.35rem 0 0;font-size:.83rem;color:var(--nx-muted);line-height:1.5}
.nx-results{background:var(--nx-surface);border:1px solid var(--nx-line);border-radius:14px;
    padding:1.3rem;box-shadow:0 1px 2px rgba(16,20,24,.05), 0 8px 24px rgba(16,20,24,.06);position:sticky;top:1rem}
@media (max-width:880px){.nx-results{position:static}}
.nx-out{padding:.9rem 0;border-top:1px dashed var(--nx-line-2)}
.nx-out:first-of-type{border-top:0;padding-top:0}
.nx-out-label{font-size:.85rem;font-weight:700;letter-spacing:.02em;color:var(--nx-muted);margin:0 0 .2rem}
.nx-out-value{font-family:var(--nx-display);font-size:clamp(1.7rem,1.3rem + 1.4vw,2.4rem);
    line-height:1.05;color:var(--nx-ink);margin:0}
.nx-out-note{margin:.3rem 0 0;font-size:.85rem;color:var(--nx-muted);line-height:1.5}
.nx-reset{margin-top:1rem}

.nx-doc{background:var(--nx-surface);border:1px solid var(--nx-line);border-radius:14px;
    padding:1.4rem 1.5rem;box-shadow:0 1px 2px rgba(16,20,24,.05), 0 8px 24px rgba(16,20,24,.06)}
.nx-doc h2{font-size:1.2rem;margin:1.8rem 0 .7rem;padding-top:1.2rem;border-top:1px solid var(--nx-line)}
.nx-doc h2:first-of-type{margin-top:0;padding-top:0;border-top:0}
.nx-check{list-style:none;margin:0;padding:0}
.nx-check li{display:flex;gap:.75rem;padding:.6rem 0;border-top:1px dashed var(--nx-line)}
.nx-check li:first-child{border-top:0}
.nx-check input[type=checkbox]{margin:.32rem 0 0;width:1.05rem;height:1.05rem;flex:0 0 auto;accent-color:var(--nx-btn)}
.nx-check .nx-check-label{font-weight:700;color:var(--nx-ink);display:block;margin:0 0 .18rem}
.nx-check .nx-check-detail{margin:0;font-size:.93rem;color:var(--nx-ink-soft);line-height:1.58}
.nx-toolbar{display:flex;flex-wrap:wrap;gap:.6rem;margin:1.2rem 0 0}

.nx-form{background:var(--nx-surface);border:1px solid var(--nx-line);border-radius:14px;
    padding:1.4rem;box-shadow:0 1px 2px rgba(16,20,24,.05), 0 8px 24px rgba(16,20,24,.06)}
.nx-form .nx-field input[type=text],.nx-form .nx-field input[type=email]{width:100%;
    border:1px solid var(--nx-line-2);border-radius:9px;background:var(--nx-bg);
    padding:.66rem .75rem;font-family:var(--nx-body);font-size:1rem;color:var(--nx-ink)}
.nx-form .nx-field input:focus{outline:0;border-color:var(--nx-btn);box-shadow:0 0 0 3px var(--nx-tint)}
.nx-consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.9rem;color:var(--nx-ink-soft);line-height:1.55}
.nx-consent input{margin-top:.25rem;accent-color:var(--nx-btn)}
.nx-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.nx-cta{background:var(--nx-surface);border:1px solid var(--nx-line);border-radius:16px;
    padding:clamp(1.4rem,1rem + 1.6vw,2.2rem);box-shadow:0 1px 2px rgba(16,20,24,.05), 0 8px 24px rgba(16,20,24,.06)}
.nx-cta h2{margin-bottom:.4em}
.nx-cta p{max-width:64ch}
.nx-note{font-size:.87rem;color:var(--nx-muted);line-height:1.6;max-width:74ch}

.nx-pillar{margin:1.6rem 0;padding:1.05rem 1.2rem;background:var(--nx-soft);
    border:1px solid var(--nx-line);border-left:4px solid var(--nx-btn);border-radius:10px;
    font-size:.98rem;line-height:1.6}
.nx-pillar b{display:block;font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;
    color:var(--nx-muted);margin-bottom:.3rem}
.nx-cluster{margin:2rem 0;padding:1.3rem 1.4rem;background:var(--nx-soft);
    border:1px solid var(--nx-line);border-radius:12px}
.nx-cluster h2{font-size:1.15rem;margin-bottom:.4em}
.nx-cluster ol{margin:.6rem 0 0;padding-left:1.2rem}
.nx-cluster li{margin:0 0 .5rem;line-height:1.55}
.nx-startpanel{margin:2.4rem auto 0;padding:1.5rem;background:var(--nx-soft);
    border:1px solid var(--nx-line);border-radius:14px}

@media print{
  .nx-hero,.nx-toolbar,.nx-form,.nx-cta,.nx-actions{display:none !important}
  .nx-doc{border:0;box-shadow:none;padding:0}
  .nx-check input[type=checkbox]{appearance:auto}
}
@media (prefers-reduced-motion:reduce){
  .nx-btn{transition:none}
  .nx-btn:hover{transform:none}
}
