/* ==========================================================================
   Sole Grader LLC - public stylesheet
   Mobile-first: base rules are the narrow-screen layout, desktop is layered on
   with min-width queries. Every colour is a custom property below, so the
   accent can be changed in one place.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:        #0d0f11;
  --bg-2:      #111418;
  --surface:   #161a1f;
  --surface-2: #1c2127;
  --line:      #262c33;
  --line-soft: #1f242a;

  /* Text */
  --ink:       #f3f5f7;
  --ink-2:     #b8c1cb;
  --ink-3:     #8b95a1;

  /* Accent - warm industrial amber. Change these three to restyle the site. */
  --accent:      #ef8a17;
  --accent-soft: #ffb15e;
  --accent-fade: rgba(239, 138, 23, .12);
  --accent-ink:  #1a1206;

  --danger: #ef4444;

  /* Type */
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --h1: clamp(1.85rem, 6.2vw, 3.25rem);
  --h2: clamp(1.35rem, 3.6vw, 2.1rem);

  /* Space */
  --pad: 1.1rem;
  --band: clamp(2.75rem, 7vw, 5rem);
  --r: 12px;
  --r-sm: 8px;
  --wrap: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.62 var(--font);
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0 0 .55em; line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: 1.05rem; }
p { margin: 0 0 1rem; color: var(--ink-2); }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap.narrow { max-width: 760px; }
.center { text-align: center; }
.mt8 { margin-top: .5rem; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--accent); color: var(--accent-ink); padding: .6rem 1rem; font-weight: 700; }
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 2px; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: var(--r-sm);
  font: inherit; font-weight: 700; font-size: .94rem; cursor: pointer; text-align: center;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: var(--accent-soft); }
.btn-line { border-color: var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: .45rem .8rem; font-size: .84rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.4rem 0 0; }
.center-row { justify-content: center; }

.arrow { color: var(--accent); font-weight: 700; }
.arrow::after { content: " →"; }
.arrow:hover { color: var(--accent-soft); }

/* ------------------------------------------------------------------- header */

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 15, 17, .94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.head-row { display: flex; align-items: center; gap: .7rem; min-height: 62px; }
.brand { display: flex; align-items: center; gap: .55rem; margin-right: auto; min-width: 0; }
.brand-mark {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); border-radius: 9px;
  font-weight: 800; font-size: .85rem; letter-spacing: -.02em;
}
.brand-txt { display: flex; flex-direction: column; min-width: 0; }
.brand-name { font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.brand-name b { color: var(--accent); font-weight: 800; }
.brand-sub { display: none; font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.llc { color: var(--ink-3); font-size: .78em; }

.nav { display: none; }
.nav ul { display: flex; gap: .1rem; }
.nav ul a { display: block; padding: .5rem .58rem; border-radius: var(--r-sm); font-size: .87rem; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.nav ul a:hover { color: var(--ink); background: var(--surface); }
.nav ul a.on { color: var(--accent); }
.nav-cta { display: none; }

.head-actions { display: flex; align-items: center; gap: .45rem; flex: none; }
.lang { display: flex; align-items: center; gap: .25rem; font-size: .8rem; font-weight: 700; color: var(--ink-3); }
.lang a { padding: .25rem .3rem; border-radius: 6px; }
.lang a.on { color: var(--accent); background: var(--accent-fade); }
.head-cta { display: none; }

.burger { width: 40px; height: 36px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 8px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; }
.burger span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform .18s, opacity .18s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.open { display: block; position: absolute; inset: 100% 0 auto 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: .5rem var(--pad) 1.1rem; }
.nav.open ul { flex-direction: column; gap: 0; }
.nav.open ul a { padding: .75rem .25rem; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--line-soft); }
.nav.open .nav-cta { display: flex; margin-top: .9rem; }

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

.hero { position: relative; padding: clamp(2.25rem, 8vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(780px 420px at 88% -5%, rgba(239, 138, 23, .16), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 25% 0%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 25% 0%, #000, transparent 72%);
}
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 .9rem; font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-fade); }
.lead { font-size: 1.03rem; color: var(--ink-2); max-width: 66ch; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.stats b { display: block; font-size: 1.4rem; }
.stats span { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }

/* ------------------------------------------------------------------- bands */

.band { padding: var(--band) 0; }
.band-tight { padding: clamp(2rem, 5vw, 3rem) 0; }
.band-alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sec-head { max-width: 70ch; margin-bottom: 1.9rem; }
.sec-head-row { max-width: none; display: grid; gap: 1rem; }
.kick { margin: 0 0 .35rem; font-size: .72rem; font-weight: 800; letter-spacing: .2em; color: var(--accent); }
.sec-foot { margin-top: 1.5rem; }
.mini-h { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 1.6rem; }

.page-top { padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(1.25rem, 3vw, 1.75rem); background: linear-gradient(180deg, #101317, var(--bg)); border-bottom: 1px solid var(--line-soft); }
.crumbs { display: flex; gap: .4rem; font-size: .78rem; color: var(--ink-3); margin-bottom: .7rem; }
.crumbs a:hover { color: var(--accent); }
.updated { font-size: .82rem; color: var(--ink-3); }

.grid { display: grid; gap: 1rem; }
.split { display: grid; gap: 1.75rem; }

/* ------------------------------------------------------------------- tiles */

.tile, .panel, .market, .grade-col, .form-card, .spec { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.tile { padding: 1.25rem; }
.tile-num { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .14em; color: var(--accent); margin-bottom: .6rem; }
.tile p, .market p, .grade-col p, .panel p { margin: 0; font-size: .93rem; }
.tile h3, .market h3 { margin-bottom: .3rem; }
.panel { padding: 1.4rem; }
.panel h2 { font-size: 1.1rem; }

.market { padding: 1.4rem; display: flex; flex-direction: column; gap: .55rem; }
.market .arrow { margin-top: auto; font-size: .9rem; }

.grade-col { padding: 1.4rem; border-top: 3px solid var(--accent); }
.grade-col.grade-hb { border-top-color: var(--accent-soft); }
.grade-col.grade-b { border-top-color: #6b7683; }
.grade-key { display: inline-block; margin-bottom: .6rem; padding: .1rem .5rem; border: 1px solid var(--accent); border-radius: 999px; font-size: .72rem; font-weight: 800; color: var(--accent); }
.grade-meta { margin-top: .6rem; font-size: .85rem; color: var(--ink-3); }

.spec { padding: .35rem 1.25rem; }
.spec-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line-soft); }
.spec-row:last-child { border-bottom: 0; }
.spec-row b { font-size: 1.15rem; color: var(--accent); }
.spec-row span { font-size: .85rem; color: var(--ink-3); text-align: right; }

.checks { display: grid; gap: .65rem; }
.checks li { position: relative; padding-left: 1.75rem; color: var(--ink-2); }
.checks li::before { content: ""; position: absolute; left: 0; top: .45em; width: 1.05rem; height: 1.05rem; border: 1px solid var(--accent); border-radius: 50%; background: var(--accent-fade); }
.checks li::after { content: ""; position: absolute; left: .32rem; top: .7em; width: .4rem; height: .2rem; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

.steps { display: grid; gap: .7rem; }
.steps li { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); font-weight: 600; }
.steps-n { color: var(--accent); font-weight: 800; }

.proc { display: grid; gap: 1rem; }
.proc li { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.proc-n { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: var(--accent-fade); border: 1px solid rgba(239,138,23,.32); color: var(--accent); font-weight: 800; }
.proc h3 { margin-bottom: .25rem; }
.proc p { margin: 0; font-size: .93rem; }

.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pills li a, .pills.plain li { display: block; padding: .45rem .85rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: .86rem; font-weight: 600; }
.pills li a:hover { border-color: var(--accent); color: var(--accent); }

.note { margin-top: 1.5rem; padding: .9rem 1.05rem; border: 1px solid rgba(239,138,23,.3); background: var(--accent-fade); border-radius: var(--r-sm); font-size: .89rem; color: var(--ink-2); }
.notes { margin-top: 2rem; display: grid; gap: .5rem; }
.notes p { font-size: .88rem; color: var(--ink-3); margin: 0; }

/* ------------------------------------------------------- category cards */

.cat { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .18s, transform .18s; }
.cat:hover { border-color: var(--accent); transform: translateY(-2px); }

/* No-photo state: the media slot is filled typographically. Adding an image to
   data/categories.js swaps the panel for the photo with no layout change. */
.cat-media {
  position: relative; aspect-ratio: 16 / 9; display: flex; align-items: flex-end; padding: .95rem 1rem;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 12px, transparent 12px 24px),
    linear-gradient(158deg, var(--surface-2), #10141a);
}
.cat-media.has-photo { padding: 0; }
.cat-media.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.cat-type {
  font-size: clamp(1.35rem, 4.4vw, 1.9rem); font-weight: 800; line-height: 1.06;
  letter-spacing: -.025em; color: rgba(243, 245, 247, .21); text-transform: uppercase;
  max-width: 100%;
}
.cat-pack {
  position: absolute; top: .7rem; right: .7rem; padding: .18rem .6rem;
  background: rgba(13, 15, 17, .82); border: 1px solid var(--accent); border-radius: 999px;
  font-size: .68rem; font-weight: 700; color: var(--accent); letter-spacing: .02em;
}
.cat-body { padding: 1.05rem 1.15rem .5rem; flex: 1; }
.cat-body h3 { margin-bottom: .35rem; font-size: 1.02rem; }
.cat-body p { margin: 0; font-size: .89rem; }
.cat-foot { padding: .85rem 1.15rem 1.1rem; border-top: 1px solid var(--line-soft); margin-top: .85rem; }
.cat-foot-label { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .5rem; }
.badges { display: flex; flex-wrap: wrap; gap: .4rem; }

.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .18rem .55rem .18rem .3rem; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-2); font-size: .72rem; font-weight: 700; color: var(--ink-2); }
.badge-key { display: inline-grid; place-items: center; min-width: 1.35rem; height: 1.35rem; padding: 0 .25rem; border-radius: 999px; background: var(--surface-2); color: var(--ink); font-size: .66rem; }
.badge-a { border-color: rgba(239,138,23,.55); color: var(--accent-soft); }
.badge-a .badge-key { background: var(--accent); color: var(--accent-ink); }
.badge-hb .badge-key { background: rgba(239,138,23,.28); color: var(--accent-soft); }
.badge-specialty { border-color: rgba(148,163,184,.4); }

/* --------------------------------------------------------------- filters */

.filters { display: grid; gap: .6rem; margin-bottom: 1.1rem; }
.filters-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.filter-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip { padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.region-intro { max-width: 70ch; }
.count { font-size: .8rem; color: var(--ink-3); margin-bottom: 1.1rem; }
.count b { color: var(--ink); }

/* ------------------------------------------------------- grade comparison */

.cmp-wrap { overflow-x: auto; }
.cmp { width: 100%; font-size: .9rem; }
.cmp thead { display: none; }
.cmp tbody tr { display: grid; gap: .35rem; padding: 1.1rem; margin-bottom: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.cmp th[scope="row"] { text-align: left; padding-bottom: .4rem; }
.cmp td { color: var(--ink-2); }
.cmp td::before { content: attr(data-label); display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: .5rem; }

/* ---------------------------------------------------------------- forms */

.contact-grid { display: grid; gap: 1.75rem; }
.form-card { padding: 1.25rem; }
.form-card h2 { font-size: 1.2rem; }
.form-note { font-size: .87rem; color: var(--ink-3); }
.quote { display: grid; gap: 1rem; }
.row2 { display: grid; gap: 1rem; }
.fld { display: grid; gap: .35rem; margin: 0; border: 0; padding: 0; min-width: 0; }
.fld label, .fld legend { font-size: .84rem; font-weight: 700; }
.fld legend { padding: 0; margin-bottom: .45rem; }
.req { color: var(--accent); }

input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
  width: 100%; padding: .7rem .8rem; font: inherit; font-size: .94rem; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm);
}
input::placeholder, textarea::placeholder { color: #6d7681; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; }
textarea { resize: vertical; min-height: 118px; }
select { appearance: none; padding-right: 2.1rem; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path fill='%238b95a1' d='M1 1l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: right .75rem center; }

.checks-grid { display: grid; gap: .45rem; }
.radio-row { display: grid; gap: .45rem; }
.check { display: flex; align-items: center; gap: .6rem; padding: .55rem .7rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .89rem; color: var(--ink-2); cursor: pointer; }
.check:hover { border-color: var(--accent); color: var(--ink); }
.check input { width: 17px; height: 17px; flex: none; accent-color: var(--accent); }

/* Honeypot: hidden from people with CSS, still a real text input for bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { font-size: .79rem; color: var(--ink-3); text-align: center; margin: 0; }
.consent a { color: var(--accent); }

.alert { padding: .85rem 1rem; border-radius: var(--r-sm); font-size: .9rem; margin-bottom: 1.1rem; }
.alert ul { margin: .4rem 0 0; padding-left: 1.1rem; list-style: disc; }
.alert.err { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.4); color: #ffd4d4; }

.contact-side { display: grid; gap: 1.2rem; align-content: start; }
.contact-list { display: grid; gap: .95rem; }
.contact-list li { display: grid; gap: .1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line-soft); }
.contact-list a { color: var(--accent); font-weight: 600; }
.c-label { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.c-hint { font-size: .8rem; color: var(--ink-3); }

/* ------------------------------------------------------------ thank you */

.tick { width: 66px; height: 66px; margin: 0 auto 1.1rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent-fade); border: 1px solid rgba(239,138,23,.45); color: var(--accent); }
.ref-box { display: grid; gap: .2rem; justify-items: center; padding: 1rem; border: 1px dashed var(--line); border-radius: var(--r); background: var(--surface); }
.ref-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.ref { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.2rem; color: var(--accent); letter-spacing: .04em; }
.ref-hint { font-size: .8rem; color: var(--ink-3); }
.next { display: grid; gap: .6rem; counter-reset: n; text-align: left; max-width: 46ch; margin: 1rem auto 0; }
.next li { counter-increment: n; position: relative; padding-left: 2.1rem; color: var(--ink-2); }
.next li::before { content: counter(n); position: absolute; left: 0; top: .05em; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); font-size: .76rem; font-weight: 700; color: var(--accent); }

/* ---------------------------------------------------------------- prose */

.prose h2 { font-size: 1.15rem; margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: .95rem; }

/* ------------------------------------------------------------------ CTA */

.cta { background: linear-gradient(120deg, #15191e 0%, #0f1216 58%, #1b1208 100%); border-top: 1px solid var(--line); padding: var(--band) 0; }
.cta-row { display: grid; gap: 1.2rem; }
.cta-row h2 { margin-bottom: .35rem; }
.cta-row p { margin: 0; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .7rem; }

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

.site-foot { background: #090b0d; border-top: 1px solid var(--line); padding: 2.75rem 0 5.5rem; }
.foot-grid { display: grid; gap: 1.9rem; }
.foot-brand p { font-size: .89rem; margin-top: .8rem; }
.foot-note { color: var(--ink-3); font-size: .82rem; }
.foot-col h2 { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.foot-col ul { display: grid; gap: .45rem; font-size: .9rem; }
.foot-col a { color: var(--ink-2); }
.foot-col a:hover { color: var(--accent); }
.foot-loc { color: var(--ink-3); }
.foot-prep { margin-top: 1rem; font-size: .78rem; color: var(--ink-3); }
.foot-base { display: flex; flex-wrap: wrap; gap: .4rem 1rem; justify-content: space-between; margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft); font-size: .8rem; color: var(--ink-3); }
.foot-base p { margin: 0; color: inherit; }
.foot-lang a:hover { color: var(--accent); }

/* ------------------------------------------------- sticky mobile contact */

.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: grid; grid-template-columns: 1fr 1.3fr;
  gap: .5rem; padding: .5rem var(--pad) calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(11, 13, 15, .96); border-top: 1px solid var(--line); backdrop-filter: blur(8px);
}
.sticky-item { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .7rem .5rem; border-radius: var(--r-sm); font-size: .88rem; font-weight: 700; }
.sticky-item.wa { background: #1d2b22; color: #4ade80; border: 1px solid #26543a; }
.sticky-item.cta { background: var(--accent); color: var(--accent-ink); }

/* ---------------------------------------------------------- breakpoints */

@media (min-width: 560px) {
  .brand-sub { display: block; }
  .row2 { grid-template-columns: 1fr 1fr; }
  .checks-grid { grid-template-columns: 1fr 1fr; }
  .radio-row { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav { display: block; }
  .burger { display: none; }
  .head-cta { display: inline-flex; }
  .brand-sub { display: none; }
  .grid.g3 { grid-template-columns: repeat(3, 1fr); }
  .grid.g4 { grid-template-columns: repeat(4, 1fr); }
  .grid.g2 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .sec-head-row { grid-template-columns: 1fr auto; align-items: end; }
  .cta-row { grid-template-columns: 1fr auto; align-items: center; }
  .contact-grid { grid-template-columns: 1.55fr 1fr; gap: 2.5rem; }
  .foot-grid { grid-template-columns: 2fr 1fr 1.4fr 1.2fr; gap: 2.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .proc { grid-template-columns: 1fr 1fr; }
  .checks-grid { grid-template-columns: repeat(3, 1fr); }
  .radio-row { grid-template-columns: repeat(4, 1fr); }
  .sticky-bar { display: none; }
  .site-foot { padding-bottom: 2.75rem; }
  .filters { grid-template-columns: auto 1fr; align-items: center; gap: 1rem; }

  /* Comparison table becomes a real table on wide screens */
  .cmp thead { display: table-header-group; }
  .cmp tbody tr { display: table-row; margin: 0; padding: 0; background: none; border: 0; border-radius: 0; }
  .cmp th, .cmp td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
  .cmp thead th { background: var(--surface); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); text-align: left; }
  .cmp td::before { display: none; }
  .cmp tbody tr:hover { background: rgba(255,255,255,.02); }
}

@media (min-width: 1200px) {
  .brand-sub { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media print {
  .site-head, .sticky-bar, .cta { display: none; }
  body { background: #fff; color: #000; }
  p, .lead { color: #222; }
}
