/* ==========================================================================
   MAJESTIC AMERICAN BULLY

   One stylesheet. No framework, no theme, no build step. Mobile first, because
   most of this traffic is a phone.

   The previous site was a Simply Static export of a WordPress install and its
   mobile menu never worked, across four separate attempts to fix it, because
   the theme shipped both header rows as display:none and relied on generated
   CSS that the export dropped. Nothing here depends on anything we do not
   ship: every class used in the markup is defined in this file.

   Palette is deliberately heavy. This is a kennel selling a heavily built dog
   at a flat $700, and the page should look solid rather than boutique.
   ========================================================================== */

/* ---- tokens ------------------------------------------------------------- */
:root {
  --ink:        #16130f;   /* near black, warm */
  --ink-soft:   #4a423a;
  --ink-mute:   #6f665c;
  --paper:      #fbf8f4;   /* warm off white */
  --paper-2:    #f3ede4;   /* tinted band */
  --line:       #e2d9cc;
  --brand:      #8c3a1e;   /* burnt copper */
  --brand-dk:   #6d2c15;
  --brand-lt:   #f0e2d8;
  --gold:       #b8873a;
  --dark:       #1c1815;   /* header and footer */
  --dark-2:     #2a2420;

  --wrap: 1160px;
  --measure: 68ch;

  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --serif: 'Inknut Antiqua', Georgia, 'Times New Roman', serif;

  --r: 10px;
  --shadow: 0 1px 2px rgba(22,19,15,.06), 0 8px 24px rgba(22,19,15,.07);
}

/* ---- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;          /* nothing should ever scroll sideways */
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-dk); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.85rem, 5.2vw, 3.1rem); line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 3.6vw, 2.05rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.3rem); }
p, ul, ol { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; }
abbr[title] { text-decoration: underline dotted; cursor: help; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .7rem 1.1rem;
}
.skip-link:focus { left: .5rem; top: .5rem; }

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

/* ==========================================================================
   HEADER AND NAVIGATION
   ========================================================================== */
.site-header {
  background: var(--dark);
  color: #f4efe8;
  position: sticky; top: 0; z-index: 100;
}
.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: .75rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
/* The client's own logo, the same one on the folders in the handover photos.
   It has a baked-in gold background rather than transparency, so it is masked
   into a circle: a raw gold rectangle on a near-black bar looks like a
   mistake, and a circle reads as a crest. */
.site-logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif);
  font-size: clamp(.88rem, 3.2vw, 1.18rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.site-logo img {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(184,135,58,.55);
}
@media (min-width: 900px) { .site-logo img { width: 48px; height: 48px; } }
.site-logo:hover { color: var(--gold); }

/* desktop nav hidden on phones */
.nav-desktop { display: none; }

.nav-list { list-style: none; margin: 0; padding: 0; }

/* --- the burger. A real <button>, always drawn, never theme dependent. --- */
.nav-burger {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid rgba(255,255,255,.28);
  color: #f4efe8; font-family: var(--sans); font-size: .9rem; font-weight: 500;
  padding: .5rem .8rem; border-radius: var(--r); cursor: pointer;
}
.nav-burger:hover { background: rgba(255,255,255,.08); }
.nav-burger__bars { display: block; width: 17px; }
.nav-burger__bars span {
  display: block; height: 2px; background: currentColor; border-radius: 2px;
  margin: 3px 0; transition: transform .18s ease, opacity .18s ease;
}
.nav-burger[aria-expanded="true"] .nav-burger__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger__bars span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .nav-burger__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* --- the slide-in panel --- */
.nav-panel {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(22,19,15,.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.nav-panel[hidden] { display: none; }
.nav-panel__inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--dark);
  color: #f4efe8;
  padding: 1.1rem 1.2rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -14px 0 40px rgba(0,0,0,.35);
  animation: slidein .2s ease;
}
@keyframes slidein { from { transform: translateX(100%); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .nav-panel__inner { animation: none; }
  html { scroll-behavior: auto; }
}

.nav-close {
  background: transparent; border: 0; color: #f4efe8;
  font-size: 2rem; line-height: 1; cursor: pointer;
  padding: .1rem .4rem; margin: 0 0 .5rem auto; display: block;
}

/* Explicit colour on the links. The old site's mobile menu was invisible
   because a global rule forced near-black text onto a near-black panel. */
.nav-list--mobile { border-top: 1px solid rgba(255,255,255,.12); }
.nav-list--mobile > li { border-bottom: 1px solid rgba(255,255,255,.12); margin: 0; }
.nav-list--mobile a { color: #f4efe8; text-decoration: none; display: block; padding: .85rem .2rem; font-weight: 500; }
.nav-list--mobile a:hover, .nav-list--mobile a:focus { color: var(--gold); }
.nav-list--mobile .is-current > a,
.nav-list--mobile a[aria-current="page"] { color: var(--gold); }

.nav-list--mobile .nav-parent { display: flex; align-items: center; justify-content: space-between; }
.nav-list--mobile .nav-parent a { flex: 1; }
.nav-toggle {
  background: transparent; border: 0; color: inherit; cursor: pointer;
  padding: .7rem .5rem; display: inline-flex; align-items: center;
}
.nav-toggle svg { transition: transform .18s ease; }
.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-list--mobile .nav-sub {
  list-style: none; margin: 0 0 .5rem; padding: 0 0 0 .9rem;
  border-left: 2px solid rgba(255,255,255,.16);
  display: none;
}
/* .is-open is set by /js/nav.js and is what actually drives this. The :has()
   rule is a progressive extra so the menu still expands if the script fails to
   load; the toggle button is inside .nav-parent, and .nav-sub is a sibling of
   .nav-parent rather than of the button, which is why the adjacency is written
   this way round. */
.nav-list--mobile .nav-sub.is-open { display: block; }
.nav-list--mobile .nav-parent:has(.nav-toggle[aria-expanded="true"]) + .nav-sub { display: block; }
.nav-list--mobile .nav-sub a { padding: .6rem .2rem; font-size: .95rem; font-weight: 400; opacity: .92; }

body.nav-open { overflow: hidden; }

/* --- desktop --- */
@media (min-width: 900px) {
  .nav-burger { display: none; }
  .nav-panel { display: none !important; }
  .nav-desktop { display: block; }
  .nav-desktop .nav-list { display: flex; align-items: center; gap: .2rem; }
  .nav-desktop .nav-item { position: relative; margin: 0; }
  .nav-desktop .nav-item > a,
  .nav-desktop .nav-parent > a {
    display: block; padding: .6rem .7rem; color: #f4efe8;
    text-decoration: none; font-size: .95rem; font-weight: 500; border-radius: 6px;
  }
  .nav-desktop .nav-item > a:hover,
  .nav-desktop .nav-parent > a:hover { background: rgba(255,255,255,.09); color: #fff; }
  .nav-desktop .is-current > a,
  .nav-desktop .is-current > .nav-parent > a,
  .nav-desktop .is-ancestor > .nav-parent > a { color: var(--gold); }

  .nav-desktop .nav-parent { display: flex; align-items: center; }
  .nav-desktop .nav-toggle { padding: .55rem .3rem .55rem 0; color: #f4efe8; }

  /* Dropdowns are hidden by default and shown on hover or focus. The old
     theme did this the other way round and every menu rendered open. */
  .nav-desktop .nav-sub {
    position: absolute; top: 100%; left: 0; min-width: 250px;
    list-style: none; margin: 0; padding: .4rem;
    background: var(--dark-2); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r); box-shadow: 0 16px 36px rgba(0,0,0,.34);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .nav-desktop .has-children:hover > .nav-sub,
  .nav-desktop .has-children:focus-within > .nav-sub {
    opacity: 1; visibility: visible; transform: none;
  }
  .nav-desktop .nav-sub li { margin: 0; }
  .nav-desktop .nav-sub a {
    display: block; padding: .55rem .7rem; color: #ece5db;
    text-decoration: none; font-size: .92rem; border-radius: 6px;
  }
  .nav-desktop .nav-sub a:hover { background: rgba(255,255,255,.1); color: #fff; }
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.1rem; }

.band { padding: 2.6rem 0; }
.band--tint { background: var(--paper-2); }
.band--cta { background: var(--dark); color: #f0eae1; text-align: center; }
.band--cta h2 { color: #fff; }
.band--cta p { color: #d9d0c4; max-width: 60ch; margin-left: auto; margin-right: auto; }
.band--cta a:not(.btn) { color: var(--gold); }

@media (min-width: 760px) { .band { padding: 3.4rem 0; } }

/* Reading measure, left aligned. Applied ONLY to prose, never to a wrapper
   that also contains cards: on the last site a grid inherited the 68ch cap
   and every card collapsed to about half width. */
.prose { max-width: var(--measure); }
.prose h2:not(:first-child) { margin-top: 1.6em; }

.note {
  font-size: .93rem; color: var(--ink-soft);
  background: var(--brand-lt);
  border-left: 3px solid var(--brand);
  padding: .85rem 1rem; border-radius: 0 var(--r) var(--r) 0;
}
.band--cta .note { background: rgba(255,255,255,.07); border-left-color: var(--gold); color: #cfc5b8; }

/* ---- hero --------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, var(--dark) 0%, #241f1a 100%);
  color: #f4efe8;
  padding: 2.8rem 0 3rem;
}
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: .13em; font-size: .74rem;
  font-weight: 600; color: var(--gold); margin: 0 0 .8rem;
}
.hero .lede { font-size: clamp(1.02rem, 2.4vw, 1.18rem); color: #ded5c8; max-width: 62ch; }
.hero a:not(.btn) { color: var(--gold); }
@media (min-width: 760px) { .hero { padding: 4rem 0 4.2rem; } }

.cta-line { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  background: var(--brand); color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: var(--r);
  text-decoration: none; border: 1px solid var(--brand);
  transition: background .15s ease, transform .1s ease;
  text-align: center;
}
.btn:hover { background: var(--brand-dk); border-color: var(--brand-dk); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: #f4efe8; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }
.band:not(.band--cta) .btn--ghost, .band--tint .btn--ghost { color: var(--brand); border-color: var(--brand); }
.band:not(.band--cta) .btn--ghost:hover, .band--tint .btn--ghost:hover { background: var(--brand-lt); }
.btn--small { font-size: .9rem; padding: .55rem 1rem; width: 100%; }

/* ---- the answer box ----------------------------------------------------- */
.answer {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--r); padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow); max-width: 78ch;
}
.answer p:last-child { margin-bottom: 0; }

/* ---- stats -------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .7rem; margin-top: 1.2rem;
}
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: .85rem 1rem;
}
.stat__k {
  display: block; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .09em; color: var(--ink-mute); font-weight: 600; margin-bottom: .2rem;
}
.stat__v { display: block; font-family: var(--serif); font-size: 1.02rem; font-weight: 500; }

/* ---- breadcrumbs -------------------------------------------------------- */
.crumbs {
  max-width: var(--wrap); margin: 0 auto; padding: .85rem 1.1rem 0;
  font-size: .85rem; color: var(--ink-mute);
}
.crumbs a { color: var(--ink-mute); }
.crumbs span { margin: 0 .15rem; }

/* ==========================================================================
   PUPPY CARDS

   Two side by side on a phone. Greg asked for this explicitly on the last
   build and he was right: one card per row pushes the third puppy below two
   full screens of scrolling.
   ========================================================================== */
.pups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.6rem;
}
@media (min-width: 700px)  { .pups { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; } }
@media (min-width: 1000px) { .pups { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; } }

.pup {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease;
}
.pup:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pup__media { display: block; background: var(--paper-2); }
.pup__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.pup__media { position: relative; }
/* The size class, over the photo. A buyer choosing between an XL and a pocket
   should not have to read a paragraph to find out which is which. */
.pup__class {
  position: absolute; top: .5rem; left: .5rem;
  background: rgba(22,19,15,.82); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .22rem .5rem; border-radius: 5px; text-decoration: none;
  backdrop-filter: blur(2px);
}
a.pup__class:hover { background: var(--brand); color: #fff; }

.pup__body { padding: .75rem .8rem .9rem; display: flex; flex-direction: column; flex: 1; }
.pup__name { font-size: 1.05rem; margin: 0 0 .05rem; }
.pup__color { font-size: .8rem; color: var(--brand); font-weight: 600; margin: 0 0 .15rem; }
.pup__spec { font-size: .82rem; color: var(--ink-mute); margin: 0 0 .35rem; }
.pup__price {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--brand); margin: 0 0 .7rem;
}
.pup__cta { margin: auto 0 0; }

.viewall { margin-top: 1.3rem; font-weight: 500; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--dark); color: #cfc6b9; margin-top: 0; }
.site-footer a { color: #e6ded2; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 2.6rem 1.1rem 1.8rem;
  display: grid; grid-template-columns: 1fr; gap: 1.8rem;
}
@media (min-width: 620px)  { .site-footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .site-footer__inner { grid-template-columns: 1.6fr repeat(3, 1fr); } }
@media (min-width: 1100px) { .site-footer__inner { grid-template-columns: 1.5fr repeat(3, 1fr) repeat(4, .8fr); gap: 1.4rem; } }

.foot-about { font-size: .9rem; }
.foot-name { font-family: var(--serif); font-size: 1.1rem; color: #fff; margin: 0 0 .6rem; }
.foot-trust { color: #b9ae9f; }

.foot-col h3 {
  font-family: var(--sans); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); margin: 0 0 .7rem; font-weight: 600;
  min-height: 1px;                     /* the state columns after the first
                                          carry an empty heading on purpose */
}
.foot-col ul { list-style: none; margin: 0; padding: 0; font-size: .87rem; }
.foot-col li { margin-bottom: .38rem; }

.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.1rem; text-align: center; font-size: .82rem; color: #8f8578;
}
.site-footer__legal p { margin: 0; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form { max-width: 34rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; color: var(--ink);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand); outline: 2px solid var(--brand-lt); outline-offset: 0;
}
/* Radios and checkboxes keep their native rendering. Stripping appearance on a
   generic field selector made them invisible on the last build. */
.field input[type="radio"], .field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: auto; margin-right: .45rem;
}
.field .hint { font-size: .84rem; color: var(--ink-mute); margin: .3rem 0 0; }
.field--hp { position: absolute; left: -9999px; }   /* honeypot */

.form-error, .form-ok {
  padding: .85rem 1rem; border-radius: var(--r); margin-bottom: 1.2rem; font-size: .93rem;
}
.form-error { background: #fdeceb; border-left: 3px solid #a8322a; color: #7d221c; }
.form-ok { background: #eaf4ec; border-left: 3px solid #2f6b41; color: #245134; }

/* ==========================================================================
   TABLES
   ========================================================================== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 1.3rem; }
table { border-collapse: collapse; width: 100%; min-width: 30rem; font-size: .94rem; }
th, td { text-align: left; padding: .65rem .8rem; border-bottom: 1px solid var(--line); }
thead th {
  background: var(--paper-2); font-family: var(--sans); font-weight: 600;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft);
}
tbody tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   MISC
   ========================================================================== */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: .3rem 0; }
.faq summary {
  cursor: pointer; font-weight: 600; padding: .85rem 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.35rem; color: var(--brand); line-height: 1; }
.faq details[open] summary::after { content: '\2013'; }
.faq details > *:not(summary) { margin-bottom: 1rem; }

.quotes { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 1.5rem; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.15rem 1.25rem;
}
.quote p { font-size: .96rem; }
.quote cite { font-style: normal; font-weight: 600; font-size: .88rem; color: var(--ink-soft); }
.quote cite span { display: block; font-weight: 400; color: var(--ink-mute); font-size: .82rem; }

/* Class and color summary cards on the homepage. */
.cards {
  display: grid; grid-template-columns: 1fr; gap: .9rem; margin-top: 1.5rem;
}
@media (min-width: 620px)  { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; } }
.ccard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.1rem 1.15rem;
}
.band--tint .ccard { background: var(--paper); }
.ccard h3 { font-size: 1.12rem; margin: 0 0 .2rem; }
.ccard h3 a { text-decoration: none; }
.ccard h3 a:hover { text-decoration: underline; }
.ccard p { font-size: .92rem; margin: 0 0 .55rem; }
.ccard__size {
  font-size: .76rem !important; text-transform: uppercase; letter-spacing: .07em;
  color: var(--ink-mute); font-weight: 600;
}
.ccard__have {
  margin: 0 !important; padding-top: .55rem; border-top: 1px solid var(--line);
  font-size: .88rem !important;
}
.muted { color: var(--ink-mute); font-weight: 400; }

.linkgrid {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem .9rem;
  font-size: .93rem;
}
.linkgrid li { margin: 0; }

@media print {
  .site-header, .site-footer, .nav-panel, .cta-line, .band--cta { display: none; }
  body { background: #fff; font-size: 12pt; }
}

/* ---- reserved, set at runtime from /status.json by the admin panel ------ */
.pup__media { position: relative; }
.pup__reserved {
  position: absolute; inset: auto 0 0 0;
  background: rgba(22,19,15,.88); color: #fff;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; text-align: center; padding: .35rem 0;
}
.pup.is-reserved .pup__media img { filter: grayscale(.55) brightness(.9); }
.btn--disabled {
  background: var(--line); border-color: var(--line); color: var(--ink-mute);
  cursor: default; pointer-events: none;
}
