/* Cabinet Quote Builder — brand CSS.
   Ported from the Easy Text Notifications design system (main.css), re-skinned
   warm wood/amber for the cabinet trade. Fonts: Outfit 600 (headings),
   IBM Plex Sans 400 (body). Brand amber #b45309 on warm-white paper. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Outfit";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/outfit-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/plex-sans-400.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --brand: #b45309;        /* amber — stain on fresh oak */
  --brand-dark: #8a3d06;
  --brand-tint: #faf0e2;
  --ink: #2b2118;          /* dark walnut */
  --body: #46392e;
  --muted: #7f6f5e;
  --line: #e8ddcf;
  --bg: #fffdf9;           /* warm white */
  --surface: #f8f2e9;      /* light oak */
  --danger: #b3261e;
  --danger-tint: #fbeae9;
  --win: #ecf4e4;
  --lose: #faefed;
  --radius: 10px;
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", Consolas, monospace;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 1.75rem); margin-top: 1.8em; }
h3 { font-size: 1.2rem; margin-top: 1.5em; }
p, ul, ol, table { margin: 0 0 1.1em; }
a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand); }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
code, .mono { font-family: var(--font-mono); font-size: .92em; }
code { background: var(--surface); padding: .1em .35em; border-radius: 4px; }
pre { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; overflow-x: auto; }
pre code { background: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.wrap--narrow, .page-narrow { max-width: 46rem; }
.page-narrow { margin: 0 auto; }
.sr-only, .skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus {
  position: fixed; top: .5rem; left: .5rem; width: auto; height: auto; clip: auto;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 6px; z-index: 100;
}
main { padding: 2.5rem 0 4rem; }
.muted { color: var(--muted); }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 44rem; margin-bottom: 1.6em; }
.crumbs { font-size: .875rem; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { display: flex; align-items: center; gap: .4rem; }
.crumbs li + li::before { content: "\203A"; opacity: .55; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--brand-dark); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }
.content-section { margin-bottom: 2.75rem; }
.content-section > h2::before {
  content: ""; display: block; width: 2.2rem; height: 3px;
  background: var(--brand); border-radius: 2px; margin-bottom: .6rem;
}
.page-head { margin-bottom: 2.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .65rem 1.35rem; border-radius: 8px; border: 1.5px solid var(--line);
  background: var(--bg); color: var(--ink);
  text-decoration: none; cursor: pointer; transition: background .15s, border-color .15s;
}
.btn:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-brand, .btn--primary {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.btn-brand:hover, .btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn--small { font-size: .875rem; padding: .35rem .8rem; }
.btn--big { font-size: 1.08rem; padding: .8rem 1.6rem; }

/* ---------- Header / nav ---------- */
.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem; flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand-text { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.brand-text strong { color: var(--brand-dark); font-weight: 600; }
.primary-nav { display: flex; align-items: center; gap: 1.25rem; }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: block; padding: .5rem .75rem; border-radius: 6px;
  color: var(--body); text-decoration: none; font-size: .975rem;
}
.nav-link:hover { background: var(--surface); color: var(--ink); }
.nav-link.is-current { color: var(--brand-dark); font-weight: 600; }
.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: 8px;
  padding: .65rem .7rem; cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; content: "";
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -6px; }
.nav-toggle-bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] { border-color: var(--brand); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .primary-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    padding: .5rem 0 1rem; gap: .75rem;
  }
  .primary-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { padding: .7rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-cta { text-align: center; }
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 3rem; border-top: 1px solid var(--line);
  background: var(--surface); padding: 2.75rem 0 1.5rem; font-size: .95rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-row { display: flex; align-items: center; gap: .55rem; margin-bottom: .5rem; }
.footer-tag { color: var(--muted); max-width: 20rem; }
.footer-head {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin: 0 0 .8em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .45em; }
.footer-col a { color: var(--body); text-decoration: none; }
.footer-col a:hover { color: var(--brand-dark); text-decoration: underline; }
.footer-bar {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1.25rem;
  color: var(--muted); font-size: .85rem;
}
.footer-bar p { margin: 0; }
.powered-by a { color: var(--muted); text-decoration: underline; }
.powered-by a:hover { color: var(--brand-dark); }

/* ---------- Cards / badges / checklists ---------- */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1.25rem;
}
.badge {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .03em;
  background: var(--brand-tint); color: var(--brand-dark);
  border-radius: 999px; padding: .2em .75em; text-transform: uppercase;
}
.badge--muted { background: var(--surface); color: var(--muted); }
.badge--danger { background: var(--danger-tint); color: var(--danger); }
.checklist { list-style: none; padding-left: 0; }
.checklist li { padding-left: 1.7em; position: relative; margin-bottom: .5em; }
.checklist li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--brand);
  font-weight: 700;
}
.page-cta {
  background: var(--brand-tint); border-radius: var(--radius);
  padding: 2.5rem 2rem; text-align: center; margin: 3rem 0 0;
}
.page-cta h2 { margin-top: 0; margin-bottom: .35em; }
.page-cta-sub { color: var(--muted); max-width: 34rem; margin: 0 auto 1.4rem; }
.page-cta-note { color: var(--muted); font-size: .85rem; margin: 1rem 0 0; }

/* ---------- Notices / forms ---------- */
.notice {
  background: var(--brand-tint); border: 1px solid var(--brand);
  border-radius: 8px; padding: .8rem 1.1rem; margin-bottom: 1.25rem;
}
.notice--error { background: var(--danger-tint); border-color: var(--danger); color: var(--danger); }
label { font-weight: 600; font-size: .92rem; color: var(--ink); display: block; margin-bottom: .3em; }
input, select, textarea {
  font: inherit; width: 100%; padding: .6rem .75rem;
  border: 1.5px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--brand); outline: none; }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; margin-bottom: 1.5rem; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: left; padding: .6rem .75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--font-head); font-weight: 600; color: var(--ink); background: var(--surface); }
.compare-table th:first-child { min-width: 11rem; }
.row-us td { background: var(--win); }
.verdict {
  background: var(--brand-tint); border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1.5rem 0;
}

/* Win / lose columns (comparison pages) */
.win-lose { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.win-lose section { border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 0; }
.win-lose h2 { margin-top: 0; font-size: 1.15rem; }
.win-lose .win-col { background: var(--win); }
.win-lose .lose-col { background: var(--lose); }
.win-lose ul { margin: 0; padding-left: 1.1rem; }
.win-lose li { margin-bottom: .5em; }
@media (max-width: 700px) { .win-lose { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding: .35rem 0; }
.faq summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600;
  color: var(--ink); padding: .6rem 0; list-style-position: outside;
}
.faq summary:hover { color: var(--brand-dark); }
.faq details[open] summary { color: var(--brand-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(56rem 28rem at 82% -12%, rgba(180, 83, 9, .14), transparent 62%),
    radial-gradient(38rem 22rem at 8% 108%, rgba(180, 83, 9, .09), transparent 65%),
    linear-gradient(180deg, var(--brand-tint), var(--bg) 88%);
  padding: 4.25rem 0 2.5rem;
}
.page-home main { padding: 0 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero-copy .badge { margin-bottom: 1rem; }
.hero-copy h1 { font-size: clamp(2.1rem, 5vw, 3rem); }
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.5rem 0 1.25rem; }
.hero-proof { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; font-size: .92rem; color: var(--muted); }
.hero-proof li { padding-left: 1.3em; position: relative; }
.hero-proof li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.hero-descend { text-align: center; margin: 3rem 0 0; }
.hero-descend a {
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.hero-descend a:hover { color: var(--brand-dark); }
.hero-descend .descend-arrow { display: inline-block; margin-right: .5em; animation: descend-bob 2.6s ease-in-out infinite; }
@keyframes descend-bob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* Demo frame — fake browser window holding the demo GIF (or the CSS mock). */
.demo-frame {
  max-width: 26rem; margin: 0 auto; background: var(--bg);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(43, 33, 24, .14); overflow: hidden;
}
.demo-bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .55rem .9rem; border-bottom: 1px solid var(--line); background: var(--surface);
}
.demo-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: inline-block; }
.demo-bar i:first-child { background: #d9a06b; }
.demo-url {
  font-family: var(--font-mono); font-size: .72rem; color: var(--muted);
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: .12em .8em; margin-left: .35rem;
}
.demo-frame img { display: block; width: 100%; }

/* CSS quote-widget mock — used until the demo GIF lands in assets/img/. */
.quote-mock { padding: 1.1rem 1.2rem 1.2rem; }
.qm-title { font-family: var(--font-head); font-weight: 600; color: var(--ink); margin: 0 0 .8rem; font-size: .95rem; }
.qm-row {
  display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: .5rem .75rem; margin: 0 0 .55rem;
}
.qm-row b { color: var(--ink); font-weight: 600; }
.qm-price {
  background: var(--brand-tint); border: 1px solid var(--brand); border-radius: 8px;
  padding: .65rem .75rem; margin: .75rem 0 .55rem; font-size: .95rem; color: var(--ink);
}
.qm-price strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--brand-dark); }
.qm-cta {
  display: block; text-align: center; background: var(--brand); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  border-radius: 8px; padding: .55rem; margin: 0 0 .6rem;
}
.qm-meta { font-size: .75rem; color: var(--muted); margin: 0; }
@keyframes qm-in {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.quote-mock > * { animation: qm-in .55s cubic-bezier(.2, .7, .3, 1) backwards; }
.quote-mock .qm-row:nth-of-type(1) { animation-delay: .4s; }
.quote-mock .qm-row:nth-of-type(2) { animation-delay: .8s; }
.quote-mock .qm-row:nth-of-type(3) { animation-delay: 1.2s; }
.quote-mock .qm-price { animation-delay: 1.8s; }
.quote-mock .qm-cta { animation-delay: 2.2s; }
.quote-mock .qm-meta { animation-delay: 2.6s; }

/* ---------- Bands / sections ---------- */
.band { padding: 3.25rem 0 0; }
.band-surface { background: var(--surface); padding: 3.25rem 0; margin-top: 3.25rem; }
.band-surface + .band { padding-top: 3.25rem; }
.band-title { margin-top: 0; text-align: center; }
.band-lede { max-width: 46rem; margin: 0 auto 2rem; text-align: center; color: var(--muted); }
.band-cta { text-align: center; margin: 2rem 0 0; }
.kicker {
  display: block; text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-dark); margin: 0 0 .65rem;
}

/* ---------- Interlude — the one loud thing on a quiet page ---------- */
.interlude {
  background:
    radial-gradient(46rem 24rem at 50% 120%, rgba(180, 83, 9, .26), transparent 70%),
    var(--ink);
  color: #e8ddd0; text-align: center;
  padding: 6.5rem 0; margin-top: 3.25rem;
}
.interlude + .band-surface { margin-top: 0; }
.interlude h2 {
  color: #fff; margin: 0 auto .5em; max-width: 44rem;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem); letter-spacing: -.02em; line-height: 1.15;
}
.interlude p { color: #b3a493; max-width: 38rem; margin: 0 auto; font-size: 1.08rem; }
.interlude .kicker { color: #e3a15c; }

/* ---------- Scroll-reveal rhythm (armed by JS; harmless without) ---------- */
.reveal-armed .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
}
.reveal-armed .reveal.is-in { opacity: 1; transform: none; }
.reveal-armed .card-grid .reveal:nth-child(2),
.reveal-armed .steps .reveal:nth-child(2),
.reveal-armed .plan-strip .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-armed .card-grid .reveal:nth-child(3),
.reveal-armed .steps .reveal:nth-child(3),
.reveal-armed .plan-strip .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-armed .card-grid .reveal:nth-child(4),
.reveal-armed .plan-strip .reveal:nth-child(4) { transition-delay: .24s; }

.card-grid { display: grid; gap: 1.25rem; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.use-card { margin-bottom: 0; transition: transform .25s, box-shadow .25s, border-color .25s; }
.use-card:hover {
  transform: translateY(-3px); border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(43, 33, 24, .08);
}
.use-card h3 { margin-top: 0; font-size: 1.05rem; }
.use-card p { margin: 0; font-size: .95rem; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: var(--font-head);
  font-weight: 600; margin-bottom: .75rem;
}
.step h3 { margin: 0 0 .4em; }
.step p { margin: 0; font-size: .95rem; }

.feature-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; max-width: 60rem; margin: 0 auto; }

/* ---------- Plan cards ---------- */
.plan-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; align-items: stretch; max-width: 46rem; margin-left: auto; margin-right: auto; }
.plan-card {
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(43, 33, 24, .10); }
.plan-card--featured { border-color: var(--brand); box-shadow: 0 8px 24px rgba(180, 83, 9, .12); }
.plan-flag { align-self: center; margin-bottom: .6rem; }
.plan-card h2, .plan-card h3, .plan-name { margin: 0 0 .2em; font-size: 1.15rem; }
.plan-price { font-family: var(--font-head); font-weight: 600; font-size: 2.1rem; color: var(--ink); margin: 0; }
.plan-per { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-annual { color: var(--brand-dark); font-weight: 600; margin: .1em 0 .6em; }
.plan-blurb { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.plan-features { list-style: none; margin: 0 0 1.25rem; padding: 0; text-align: left; font-size: .92rem; flex-grow: 1; }
.plan-features li { padding: .3em 0 .3em 1.6em; position: relative; border-bottom: 1px dashed var(--line); }
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.plan-buy { margin: 0 0 .6rem; }
.plan-buy .btn { width: 100%; }
.plan-note { font-size: .8rem; color: var(--muted); margin: 0; }
.plan-strip--buy { margin: 2.5rem 0 3rem; scroll-margin-top: 1.5rem; }

@media (max-width: 960px) {
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .feature-cols { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .card-grid-4, .card-grid-2, .plan-strip { grid-template-columns: 1fr; }
}

/* ---------- Slim hero (pricing / compare / 404) ---------- */
.hero--slim { padding: 3.5rem 0 2.75rem; }
.hero .kicker, .hero--slim .kicker { text-align: left; }

/* ---------- Comparison marks + "us" column ---------- */
.mark-yes { color: #3e7a1e; font-weight: 700; }
.mark-no  { color: var(--danger); font-weight: 700; }
.compare-table td { text-align: center; }
.compare-table thead th { text-align: center; }
.compare-table thead th:first-child { text-align: left; }
.compare-table .col-us { background: var(--win); }

/* ---------- Notices (ok variant) / billing toggle ---------- */
.notice--ok { background: var(--win); border-color: #6f9a4a; }
.billing-toggle { display: flex; justify-content: center; gap: 1.5rem; margin: 0 0 .9rem; }
.billing-toggle label {
  display: inline-flex; align-items: center; gap: .45rem; margin: 0;
  font-weight: 400; font-size: .92rem; color: var(--body);
}
.billing-toggle input { width: auto; accent-color: var(--brand); }

/* ---------- Small flourishes ---------- */
.interlude em { font-style: italic; color: #e3a15c; }
.use-card .badge { margin-bottom: .6rem; }
.use-card .badge + h3 { margin-top: .35rem; }

/* ---------- Print / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal-armed .reveal { opacity: 1 !important; transform: none !important; }
}
@media print {
  .site-header, .site-footer, .nav-toggle, .page-cta { display: none; }
  body { font-size: 11pt; }
}
