/* ============================================================================
   BUILDLIST MARKETING CO. — design system
   ----------------------------------------------------------------------------
   Identity: "working drawings." The agency's own output framed as a
   construction document set — drafting ink, vellum paper, blueprint blue,
   a redline reserved for rare annotation. Mono for labels, specs and data;
   a serif body for a document feel; a tall condensed display face for
   headings, like lettering on a drawing-sheet title block.

   HARD RULE: this site carries NO Royal LePage branding, red, or trademarks.
   RLP marks are licensed to Yovan's real estate practice only — using them on a
   third-party marketing company is trademark misuse. Do not add them.

   Type:  Big Shoulders Display (display) / Newsreader (body) / JetBrains Mono (labels, data)
   ============================================================================ */

:root {
  /* ink */
  /* Contrast note: --ink-3 and --accent are tuned to clear WCAG AA (4.5:1)
     on BOTH --paper and --concrete. Don't lighten them without re-checking. */
  --ink:        #1B2734;
  --ink-2:      #3A4756;
  --ink-3:      #55616C;
  --ink-inv:    #FFFFFF;

  /* grounds — vellum, not white */
  --paper:      #F7F4EA;
  --concrete:   #EAE4D2;
  --concrete-2: #DDD5BE;
  --graphite:   #1B2734;
  --graphite-2: #24313F;

  /* accent — blueprint blue. The only accent.
     --accent is the text/fill blue (AA on --paper, --concrete, and with white on top).
     --accent-br is the brighter variant, for dark grounds only. */
  --orange:     #2B6584;
  --orange-br:  #6FB3D9;
  --orange-wash:#E3EEF3;
  --accent:     var(--orange);
  --accent-br:  var(--orange-br);
  --accent-wash:var(--orange-wash);

  /* redline — reserved for rare revision-mark annotation, never a UI accent */
  --redline:    #A8402C;

  /* support */
  --steel:      #46535E;
  --line:       #CEC6AC;
  --line-2:     #DED7C2;
  --line-dark:  #303E4C;

  /* type */
  --disp: "Big Shoulders Display", "Archivo", "Segoe UI", system-ui, sans-serif;
  --body: "Newsreader", "Public Sans", "Segoe UI", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", "Consolas", ui-monospace, monospace;

  /* layout */
  --shell: 1180px;
  --narrow: 780px;
  --pad: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: var(--narrow); }

/* ---------------------------------------------------------------- type ---- */

h1, h2, h3, h4 {
  font-family: var(--disp);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6.2vw, 66px); }
h2 { font-size: clamp(29px, 4.2vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 25px); letter-spacing: -0.01em; }
h4 { font-size: 18px; letter-spacing: -0.005em; }

p { margin: 0; max-width: 68ch; }
a { color: var(--orange); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}
.eyebrow.muted { color: var(--ink-3); }

.lede { font-size: clamp(18px, 2.1vw, 21px); color: var(--ink-2); line-height: 1.6; }
.small { font-size: 14.5px; color: var(--ink-3); }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------ sections ---- */

section { padding: clamp(56px, 8vw, 104px) 0; }
section.tight { padding: clamp(40px, 5vw, 64px) 0; }
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack.lg { gap: 34px; }
.stack.sm { gap: 12px; }

.band-concrete { background: var(--concrete); }
.band-dark { background: var(--graphite); color: var(--concrete); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark p { color: #C6C2BB; }
.band-dark .eyebrow { color: var(--orange-br); }
/* :not(.btn) — otherwise this out-specifies .btn-primary / .btn-dark's own colour */
.band-dark a:not(.btn) { color: var(--orange-br); }
.band-dark a:not(.btn):hover { color: #fff; }
.band-rule { border-top: 1px solid var(--line-2); }

.sec-head { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin-bottom: 44px; }

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

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,234,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.hdr-in { display: flex; align-items: center; gap: 24px; height: 74px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); flex: none; }
.brand svg { width: 30px; height: 30px; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: var(--disp); font-weight: 700; font-size: 16.5px; letter-spacing: -0.02em;
}
.brand-txt span {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.19em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 3px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
/* :not(.btn) so this never out-specifies the header CTA button's own colours */
.nav a:not(.btn) {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: 8px 12px; border-radius: 2px;
}
.nav a:not(.btn):hover, .nav a.on { color: var(--ink); background: var(--concrete); }

.has-drop { position: relative; }
.has-drop > button {
  font: inherit; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  background: none; border: 0; cursor: pointer; padding: 8px 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.has-drop > button::after {
  content: ""; width: 5px; height: 5px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
}
.has-drop:hover > button, .has-drop:focus-within > button { color: var(--ink); }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 268px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 8px; display: none; flex-direction: column; gap: 1px;
  box-shadow: 0 14px 34px rgba(20,23,26,0.11);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { display: flex; }
.drop a { padding: 9px 12px; font-size: 14.5px; }
.drop a span { display: block; font-size: 12.5px; color: var(--ink-3); font-weight: 400; }

.hdr-cta { flex: none; margin-left: 8px; }

.burger {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  width: 42px; height: 40px; cursor: pointer; padding: 0; position: relative;
}
.burger i { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: .2s; }
.burger i:nth-child(1) { top: 13px; }
.burger i:nth-child(2) { top: 19px; }
.burger i:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] i:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 1020px) {
  .burger { display: block; }
  .nav {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px var(--pad) 22px;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .has-drop > button { display: none; }
  .drop {
    position: static; display: flex; border: 0; box-shadow: none; padding: 0;
    background: none; min-width: 0;
  }
  .drop a { padding-left: 18px; }
  .hdr-cta { margin: 16px 0 0; }
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-size: 15px; font-weight: 600; line-height: 1;
  padding: 15px 24px; border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; transition: background .15s, color .15s, border-color .15s;
  border-radius: 2px; text-align: center;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: transparent; }
.band-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.band-dark .btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-sm { padding: 11px 17px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

a.arrow {
  font-weight: 600; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
a.arrow::after { content: "→"; transition: transform .15s; }
a.arrow:hover::after { transform: translateX(4px); }

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

.hero { padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 78px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 + p { margin-top: 22px; }

/* two-door split — the home page's defining element */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
@media (max-width: 780px) { .doors { grid-template-columns: 1fr; } }
.door {
  padding: 34px 30px 30px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 14px; background: var(--paper);
  transition: background .18s;
  border-right: 1px solid var(--line);
}
.door:last-child { border-right: 0; }
@media (max-width: 780px) {
  .door { border-right: 0; border-bottom: 1px solid var(--line); }
  .door:last-child { border-bottom: 0; }
}
.door:hover { background: var(--concrete); color: inherit; }
.door h3 { font-size: 26px; }
.door p { font-size: 15.5px; color: var(--ink-2); }
.door .go { margin-top: auto; padding-top: 10px; font-weight: 600; font-size: 15px; color: var(--orange); }
.door .go::after { content: " →"; }
.door-ico { width: 34px; height: 34px; }

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

.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
}
.card h3 { font-size: 20px; }
.card p { font-size: 15.5px; color: var(--ink-2); }
.card .num {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: var(--orange);
}
.band-concrete .card { background: var(--paper); border-color: var(--line); }
.band-dark .card { background: var(--graphite-2); border-color: var(--line-dark); }
.band-dark .card p { color: #B4B0A9; }

a.card { text-decoration: none; color: inherit; transition: border-color .16s, transform .16s; }
a.card:hover { border-color: var(--ink); color: inherit; }

/* numbered / spec list */
.specs { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.spec {
  display: grid; grid-template-columns: 60px 1fr; gap: 0 20px;
  padding: 22px 0; border-bottom: 1px solid var(--line-2);
}
.spec > .k {
  font-family: var(--mono); font-size: 12.5px; color: var(--orange);
  font-variant-numeric: tabular-nums; padding-top: 4px;
}
.spec > div:last-child { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
@media (max-width: 620px) { .spec { grid-template-columns: 1fr; gap: 8px; } }

/* checklist */
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.ticks li::before {
  content: ""; flex: none; width: 15px; height: 9px; margin-top: 7px;
  border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.band-dark .ticks li::before { border-color: var(--orange-br); }

ul.plain { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
ul.plain li { padding-left: 18px; position: relative; }
ul.plain li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; background: var(--orange);
}

/* -------------------------------------------------------------- pricing --- */

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
@media (max-width: 940px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid var(--line); background: var(--paper);
}
.tier:last-child { border-right: 0; }
@media (max-width: 940px) {
  .tier { border-right: 0; border-bottom: 1px solid var(--line); }
  .tier:last-child { border-bottom: 0; }
}
.tier.feature { background: var(--concrete); }
.tier-price {
  font-family: var(--disp); font-weight: 700; font-size: 33px;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.tier-price small { font-family: var(--mono); font-size: 12.5px; font-weight: 400; color: var(--ink-3); letter-spacing: 0; display: block; margin-top: 5px; }
.tier .ticks li { font-size: 15px; }
.tier .btn { margin-top: auto; }

.pill {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 9px; background: var(--orange); color: #fff;
  align-self: flex-start;
}
.pill.quiet { background: var(--concrete-2); color: var(--ink-2); }

/* ---------------------------------------------------------------- stats --- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--graphite); padding: 26px 22px; display: flex; flex-direction: column; gap: 6px; }
.stat b {
  font-family: var(--disp); font-weight: 700; font-size: 38px; color: #fff;
  letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums;
}
.stat span { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #9A968F; }

/* ---------------------------------------------------------------- table --- */

.scroll { overflow-x: auto; border: 1px solid var(--line); background: var(--paper); }
table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 520px; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
thead th {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500; border-bottom: 1px solid var(--line); white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ----------------------------------------------------------------- work --- */

.case { border: 1px solid var(--line); padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; background: var(--paper); }
.case .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.case dl { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.case dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.case dd { margin: 3px 0 0; font-size: 15.5px; color: var(--ink-2); }

/* ----------------------------------------------------------------- form --- */

form.gw { display: flex; flex-direction: column; gap: 17px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line); background: var(--paper);
  border-radius: 2px; width: 100%;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-wash);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-panel { background: var(--concrete); border: 1px solid var(--line); padding: 30px 28px; }
.band-dark .form-panel { background: var(--graphite-2); border-color: var(--line-dark); }
.band-dark .field input, .band-dark .field select, .band-dark .field textarea {
  background: var(--graphite); border-color: var(--line-dark); color: #fff;
}
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.consent input { width: 16px; height: 16px; flex: none; margin-top: 3px; }

/* ------------------------------------------------------------- callouts --- */

.note {
  border: 1px solid var(--line); border-left: 3px solid var(--orange);
  background: var(--orange-wash); padding: 20px 24px;
  display: flex; flex-direction: column; gap: 9px;
}
.note h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); font-weight: 500; }
.note p { font-size: 15.5px; color: var(--ink-2); }
.band-dark .note { background: rgba(255,110,40,.09); border-color: var(--line-dark); border-left-color: var(--orange-br); }

.pull {
  border-left: 3px solid var(--orange); padding: 6px 0 6px 22px;
  font-family: var(--disp); font-weight: 600; font-size: clamp(21px, 2.9vw, 28px);
  line-height: 1.3; letter-spacing: -0.015em; max-width: 26ch; text-wrap: balance;
}

/* ------------------------------------------------------------------ faq --- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--disp); font-weight: 600; font-size: 18.5px; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 17px;
  font-family: var(--mono); font-size: 22px; color: var(--orange); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 22px; display: flex; flex-direction: column; gap: 12px; }
.faq details > div p { font-size: 15.5px; color: var(--ink-2); }

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

.site-footer { background: var(--graphite); color: #A9A59E; padding: 62px 0 28px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 38px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: #fff; font-weight: 500; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer a { color: #A9A59E; text-decoration: none; }
.site-footer a:hover { color: var(--orange-br); }
.site-footer .brand { color: #fff; }
.site-footer .brand-txt span { color: #9A958C; }
.foot-bar {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .07em; color: #8F8A80;
}

/* ------------------------------------------------------------------ cta --- */

.cta-band { background: var(--graphite); color: #fff; padding: clamp(52px, 7vw, 84px) 0; }
.cta-in { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 840px) { .cta-in { grid-template-columns: 1fr; gap: 26px; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: #BDB9B2; }

/* --------------------------------------------------------------- misc ----- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------------------------------- working-drawings motifs --- */
/* A small, deliberately restrained set of drafting-document motifs. Use where
   they carry real meaning (a hero title block, a dimension rule under a lede,
   a sheet tag on a section eyebrow) — not stamped on every section. */

.title-block { border: 2px solid var(--ink); font-family: var(--mono); font-size: 12.5px; }
.title-block .row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 16px; border-bottom: 1px solid var(--line);
}
.title-block .row:last-child { border-bottom: 0; }
.title-block .row span:first-child { color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; }
.title-block .row span:last-child { font-weight: 600; }

.rule-dim { position: relative; height: 1px; background: var(--line); margin: 24px 0; }
.rule-dim::before, .rule-dim::after {
  content: ""; position: absolute; top: -4px; width: 1px; height: 9px; background: var(--line);
}
.rule-dim::before { left: 0; }
.rule-dim::after { right: 0; }

.sheet-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--line); display: inline-block;
  padding: 3px 9px; margin-bottom: 10px;
}
.band-dark .sheet-tag, .cta-band .sheet-tag { color: #C6C2BB; border-color: var(--line-dark); }

.hatch {
  height: 15px;
  background: repeating-linear-gradient(45deg, var(--line) 0 1px, transparent 1px 10px);
}

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 12px 18px; z-index: 200; text-decoration: none;
}
.skip:focus { left: 0; }

hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ============================================================================
   DARK GROUNDS — must be LAST in the file.
   Component rules like `.note p` and `.faq details > div p` are more specific
   than a bare `.band-dark p`, so without these they'd paint dark ink on a dark
   background. Every override here is scoped one level deeper than the component
   rule it corrects. Add to this block, never above it.
   ============================================================================ */

.cta-band, .band-dark { color: var(--concrete); }

.band-dark .small,
.cta-band .small,
.band-dark .case dd,
.cta-band .case dd { color: #B4B0A9; }

.band-dark .note,
.cta-band .note {
  background: rgba(255, 138, 61, .10);
  border-color: var(--line-dark);
  border-left-color: var(--orange-br);
}
.band-dark .note h4,
.cta-band .note h4 { color: var(--orange-br); }
.band-dark .note p,
.cta-band .note p { color: #C6C2BB; }

.band-dark .pull,
.cta-band .pull { border-left-color: var(--orange-br); color: #fff; }

.band-dark .faq,
.cta-band .faq { border-top-color: var(--line-dark); }
.band-dark .faq details,
.cta-band .faq details { border-bottom-color: var(--line-dark); }
.band-dark .faq summary,
.cta-band .faq summary { color: #fff; }
.band-dark .faq summary::after,
.cta-band .faq summary::after { color: var(--orange-br); }
.band-dark .faq details > div p,
.cta-band .faq details > div p { color: #C6C2BB; }

.band-dark .specs,
.cta-band .specs { border-top-color: var(--line-dark); }
.band-dark .spec,
.cta-band .spec { border-bottom-color: var(--line-dark); }
.band-dark .spec > .k,
.cta-band .spec > .k { color: var(--orange-br); }

.band-dark .ticks li,
.cta-band .ticks li { color: #C6C2BB; }
.band-dark .ticks li strong,
.cta-band .ticks li strong { color: #fff; }
.band-dark ul.plain li::before,
.cta-band ul.plain li::before { background: var(--orange-br); }
.band-dark li::marker,
.cta-band li::marker { color: var(--orange-br); }

.band-dark .card .num,
.cta-band .card .num { color: var(--orange-br); }
.band-dark .card .tag,
.cta-band .card .tag { color: var(--orange-br); }

/* The footer CTA band carries .cta-band only, so it needs the same button and
   eyebrow treatment .band-dark gets. */
.cta-band .eyebrow { color: var(--orange-br); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .28); }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; background: transparent; }
.cta-band a:not(.btn) { color: var(--orange-br); }
.cta-band a:not(.btn):hover { color: #fff; }
.band-dark a:not(.btn) { color: var(--orange-br); }
.band-dark a:not(.btn):hover { color: #fff; }

.band-dark :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible { outline-color: var(--orange-br); }

.band-dark .title-block, .cta-band .title-block { border-color: #fff; }
.band-dark .title-block .row, .cta-band .title-block .row { border-bottom-color: var(--line-dark); }
.band-dark .rule-dim, .cta-band .rule-dim,
.band-dark .rule-dim::before, .band-dark .rule-dim::after,
.cta-band .rule-dim::before, .cta-band .rule-dim::after { background: var(--line-dark); }
.band-dark .hatch, .cta-band .hatch {
  background: repeating-linear-gradient(45deg, var(--line-dark) 0 1px, transparent 1px 10px);
}
