/* Southwest Mining & Mineral, built on Bryan's logo:
   indigo-violet mountain, gold peaks, white lettering, near-black indigo ground.
   Dark topo sheet behind everything, contours in violet with gold index lines. */
:root {
  color-scheme: dark;
  --tan: #d8c49c;
  --tan-ink: #231c0e;
  --tan-ink-2: #4b3f26;
  --green: #1d4d2a;
  --void: #0a001b;        /* the logo's ground */
  --void-2: #10062a;      /* bands (header, footer) */
  --surface: #140a33;     /* cards, panels */
  --surface-2: #1c1045;   /* hover / selected */
  --line: #2d1f66;
  --line-2: #3e2d85;
  --violet: #3a10d0;      /* the mountain, brightened for UI */
  --violet-bright: #7b5cff;
  --violet-glow: rgba(90, 50, 255, .35);
  --gold: #f2cf6b;        /* logo tagline gold */
  --gold-2: #e3bd7a;      /* mountain gold */
  --gold-deep: #b8893f;
  --ink: #f4f1fb;
  --ink-2: #cdc5e6;
  --ink-3: #9b91bf;
  --active: #1f9d5c;
  --pending: #c98612;
  --sold: #c43a44;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", system-ui, sans-serif;
  --gold-line: linear-gradient(90deg, transparent, var(--gold-deep) 8%, #fde1ba 30%, var(--gold-2) 50%, #fde1ba 70%, var(--gold-deep) 92%, transparent);
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 17px/1.6 var(--body);
  color: var(--ink);
  background: var(--tan);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* The topo sheet: real USGS-style contours, violet with gold index lines. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("topo-tan.svg") center / cover no-repeat;
  opacity: .55;
  pointer-events: none;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet-bright); text-underline-offset: 3px; }
a:hover { color: var(--gold); }
h1, h2, h3 { font-family: var(--display); line-height: 1.1; letter-spacing: .01em; margin: 0 0 .5em; text-wrap: balance; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 10; background: var(--gold); color: var(--void); padding: 8px 12px; }

/* ---------- brand lockup (mark + name) ---------- */
.lockup { display: inline-flex; align-items: center; gap: 12px; }
.lockup-mark { width: 58px; height: auto; flex: none; }
.lockup-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--display); font-weight: 700; text-transform: uppercase; color: #fff; white-space: nowrap; }
.lk-1 { font-size: 23px; letter-spacing: .06em; }
.lk-2 { font-size: 14.5px; letter-spacing: .105em; margin-top: 3px; color: var(--gold); }

/* ---------- top bar ---------- */
.topbar { background: rgba(10, 0, 27, .92); position: relative; z-index: 5; backdrop-filter: blur(6px); }
.topbar::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold-line); }
.topbar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.brand { display: block; flex: none; text-decoration: none; }
.brand-empty { width: 0; }
.nav { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font: 600 15px/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; border-bottom-color: var(--gold-deep); }
.nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--gold); }
.nav .nav-cta { border: 1px solid var(--gold-deep); color: var(--gold); margin-left: 6px; }
.nav .nav-cta:hover, .nav .nav-cta[aria-current="page"] { background: var(--gold); color: var(--void); border-color: var(--gold); }
.page-home .topbar-inner { justify-content: center; }

/* ---------- hero (home) ---------- */
.hero { position: relative; color: #fff; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 300px at 50% 46%, rgba(10, 0, 27, .92) 30%, rgba(10, 0, 27, .55) 65%, transparent 100%),
    radial-gradient(900px 420px at 50% 40%, var(--violet-glow), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 76px) var(--gutter) clamp(26px, 4vw, 40px);
  text-align: center;
}
.hero-logo { margin: 0 auto; width: min(820px, 100%); }
.hero-logo img { width: 100%; height: auto; filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .55)); }
.hero-tagline {
  margin: clamp(16px, 2.6vw, 24px) 0 6px;
  font: 600 clamp(19px, 2.8vw, 27px)/1.25 var(--display);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-note { margin: 0; color: var(--ink-3); font-size: 15px; letter-spacing: .04em; }
.disclaimer-bar { position: relative; background: rgba(20, 10, 51, .85); }
.disclaimer-bar::before, .disclaimer-bar::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--gold-line); opacity: .7; }
.disclaimer-bar::before { top: 0; }
.disclaimer-bar::after { bottom: 0; }
.disclaimer-bar p {
  margin: 0 auto;
  max-width: var(--wrap);
  padding: 12px var(--gutter);
  text-align: center;
  font: 500 15px/1.4 var(--body);
  color: var(--ink);
  letter-spacing: .02em;
}

/* ---------- sections ---------- */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(32px, 5vw, 56px) var(--gutter); width: 100%; }
.section.narrow { max-width: 780px; }
.center { text-align: center; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; border-bottom: 1px solid var(--line-2); padding-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 34px); text-transform: uppercase; letter-spacing: .06em; margin: 0; color: #fff; }
.section-head p { margin: 0; color: var(--gold); font-size: 15px; }
.page-head { background: linear-gradient(180deg, rgba(20, 10, 51, .92), rgba(10, 0, 27, .75)); color: #fff; position: relative; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-line); opacity: .7; }
.page-head-inner { max-width: var(--wrap); margin: 0 auto; padding: 28px var(--gutter) 24px; }
.page-head h1 { font-size: clamp(30px, 5vw, 44px); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 4px; }
.page-head p { margin: 0; color: var(--ink-2); }
.empty { background: var(--surface); border: 1px solid var(--line); padding: 24px; }

/* ---------- claim cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-2);
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, .9);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--line-2); border-top-color: var(--gold); box-shadow: 0 18px 36px -18px var(--violet-glow); color: inherit; }
.card-photo { position: relative; aspect-ratio: 16 / 11; background: var(--void-2); overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-nophoto { height: 100%; display: grid; place-items: center; color: var(--ink-3); font-family: var(--display); letter-spacing: .12em; text-transform: uppercase; }
.tag {
  display: inline-block;
  font: 700 12px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 9px 5px;
  color: #fff;
  background: rgba(10, 0, 27, .85);
  border: 1px solid var(--gold-deep);
}
.card-photo .tag { position: absolute; left: 12px; top: 12px; }
.tag-placer { background: var(--violet); border-color: var(--violet-bright); }
.status {
  display: inline-block;
  font: 700 12px/1 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 9px 5px;
  color: #fff;
  background: var(--active);
}
.status-pending { background: var(--pending); }
.status-sold { background: var(--sold); }
.status-draft { background: var(--ink-3); }
.card-photo .status { position: absolute; right: 12px; top: 12px; }
.card-body { padding: 16px 18px 14px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 24px; margin: 0 0 2px; color: #fff; }
.card-loc { margin: 0 0 12px; color: var(--ink-2); font-size: 15px; }
.card-facts { display: flex; gap: 24px; margin: 0 0 12px; }
.card-facts dt { font: 600 11px/1 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.card-facts dd { margin: 0; font-weight: 600; color: var(--gold); }
.card-fine { margin: auto 0 0; padding-top: 10px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); letter-spacing: .03em; }

/* ---------- about + contact strip ---------- */
.section-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
.about-blurb h2, .contact-box h2, .panel h2 { font-size: 26px; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.about-blurb p { color: var(--ink-2); }
.link-arrow { font-weight: 600; }
.contact-box {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  color: #fff;
  padding: 26px;
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--gold);
}
.big-link { display: block; color: #fff; text-decoration: none; font: 700 clamp(26px, 3.4vw, 34px)/1.2 var(--display); letter-spacing: .03em; margin-bottom: 6px; overflow-wrap: anywhere; }
.big-link.small { font-size: clamp(18px, 2.2vw, 22px); font-weight: 600; color: var(--gold); margin-bottom: 18px; }
.big-link:hover { color: var(--gold); text-decoration: underline; }
.contact-box .fine { color: var(--ink-3); }

.btn {
  display: inline-block;
  font: 700 16px/1 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--void);
  background: linear-gradient(180deg, #fde1ba, var(--gold-2));
  border: 1px solid var(--gold);
  padding: 14px 22px 13px;
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--void); }

/* ---------- claim page ---------- */
.claim-layout {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 28px var(--gutter) 56px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.claim-side { position: sticky; top: 16px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold-2); }
.claim-side h2 { font-size: 15px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); padding: 14px 16px 10px; margin: 0; border-bottom: 1px solid var(--line); }
.claim-side ul { list-style: none; margin: 0; padding: 0; }
.claim-side a { display: flex; gap: 12px; align-items: center; padding: 10px 14px; text-decoration: none; color: var(--ink); border-left: 3px solid transparent; border-bottom: 1px solid var(--line); }
.claim-side li:last-child a { border-bottom: 0; }
.claim-side a:hover { background: var(--surface-2); color: #fff; }
.claim-side a[aria-current="page"] { border-left-color: var(--gold); background: var(--surface-2); }
.claim-side img, .side-nophoto { width: 64px; height: 44px; object-fit: cover; flex: none; background: var(--void-2); }
.claim-side strong { display: block; font: 600 17px/1.15 var(--display); color: #fff; }
.claim-side small { color: var(--ink-3); font-size: 13px; }
.back { display: inline-block; margin-bottom: 12px; font-weight: 600; text-decoration: none; }
.claim-head { margin-bottom: 18px; }
.claim-tags { display: flex; gap: 8px; margin-bottom: 10px; }
.claim-head h1 { font-size: clamp(34px, 5vw, 52px); color: #fff; margin: 0; text-transform: uppercase; letter-spacing: .02em; }
.claim-loc { margin: 4px 0 0; color: var(--gold); font-size: 18px; }

.gallery { margin-bottom: 24px; }
.gallery-main { position: relative; margin: 0; background: #05000e; aspect-ratio: 3 / 2; border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 64px; border: 0; cursor: pointer;
  background: rgba(10, 0, 27, .6); color: #fff; font-size: 34px; line-height: 1;
}
.gal-btn:hover { background: var(--violet); }
.gal-prev { left: 0; }
.gal-next { right: 0; }
.gallery-main figcaption { position: absolute; right: 10px; bottom: 10px; background: rgba(10, 0, 27, .75); color: #fff; font-size: 13px; padding: 3px 8px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumbs a { flex: none; width: 104px; border: 2px solid transparent; opacity: .7; }
.gallery-thumbs a[aria-current="true"] { border-color: var(--gold); opacity: 1; }
.gallery-thumbs img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 20px; background: var(--surface); border: 1px solid var(--line); }
.facts > div { padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts > div:nth-child(3n) { border-right: 0; }
.facts > div:nth-last-child(-n+3) { border-bottom: 0; }
.facts dt { font: 600 12px/1 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.facts dd { margin: 0; font-weight: 600; font-size: 18px; color: #fff; }
.disclaimer-box { background: var(--surface-2); color: var(--ink); padding: 14px 18px; margin: 0 0 22px; border-left: 4px solid var(--gold); }
.disclaimer-box strong { color: var(--gold); }
.disclaimer-inline { margin-top: 24px; color: var(--ink-3); font-size: 14px; text-align: center; }
.prose { background: var(--surface); border: 1px solid var(--line); padding: 20px 22px; margin-bottom: 24px; color: var(--ink-2); }
.prose p:first-child { margin-top: 0; }
.prose p:last-child { margin-bottom: 0; }
.inquire { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold-2); padding: 22px; }
.inquire h2 { font-size: 26px; text-transform: uppercase; color: #fff; }
.inquire p { color: var(--ink-2); }

/* ---------- forms ---------- */
.form label { display: block; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
.form input, .form textarea, .form select {
  display: block; width: 100%; margin-top: 6px;
  font: 17px/1.4 var(--body); color: var(--ink);
  padding: 11px 12px; background: var(--void);
  border: 1px solid var(--line-2); border-radius: 0;
}
.form input:focus, .form textarea:focus { border-color: var(--gold); outline: 2px solid rgba(242, 207, 107, .25); }
.form [aria-invalid="true"] { border-color: var(--sold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.opt { font-weight: 400; color: var(--ink-3); }
.err { display: block; color: #ff8b92; font-weight: 500; font-size: 15px; margin-top: 4px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.panel { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold-2); padding: 24px; }
.about-claim { background: var(--surface-2); padding: 10px 12px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; align-items: start; }

/* ---------- about / faq ---------- */
.faq-h { font-size: 28px; text-transform: uppercase; color: #fff; margin-top: 36px; }
.faq details { background: var(--surface); border: 1px solid var(--line); margin-bottom: 8px; }
.faq summary { cursor: pointer; padding: 14px 18px; font: 600 20px/1.2 var(--display); color: #fff; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; line-height: .8; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 18px 16px; color: var(--ink-2); }
.fine { font-size: 14px; color: var(--ink-3); }
.big-h { font-size: clamp(30px, 5vw, 44px); color: #fff; }

/* ---------- footer ---------- */
.footer { background: rgba(6, 0, 16, .95); color: var(--ink-3); position: relative; margin-top: 24px; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--gold-line); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 36px var(--gutter) 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; }
.footer-brand .lockup-mark { width: 72px; }
.footer-brand .lk-1 { font-size: 27px; }
.footer-brand .lk-2 { font-size: 17px; }
.footer-brand p { margin: 12px 0 0; font: 600 14px/1.3 var(--display); letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); }
.footer-contact h2 { font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.footer-contact a { display: block; color: var(--ink); text-decoration: none; margin-bottom: 4px; font-weight: 500; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--gold); text-decoration: underline; }
.footer-legal { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }

/* ---------- small screens ---------- */
@media (max-width: 860px) {
  .claim-layout { grid-template-columns: 1fr; }
  .claim-side { position: static; order: 2; }
  .section-split, .contact-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts > div { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .facts > div:nth-child(2n) { border-right: 0 !important; }
  .facts > div:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar-inner { justify-content: center; padding-top: 10px; padding-bottom: 6px; gap: 8px; }
  .lockup-mark { width: 48px; }
  .lk-1 { font-size: 20px; }
  .lk-2 { font-size: 12.5px; }
  .nav { justify-content: center; width: 100%; }
  .nav a { padding: 10px 8px; font-size: 14px; letter-spacing: .08em; }
  .form-row { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gal-btn { width: 40px; height: 52px; font-size: 28px; }
  .hero-tagline { letter-spacing: .14em; }
}
@media (prefers-reduced-motion: reduce) { .card { transition: none; } .card:hover { transform: none; } }

/* ---------- shop ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chips a { font: 600 14px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); text-decoration: none; padding: 10px 14px; border: 1px solid var(--line-2); background: rgba(20, 10, 51, .7); }
.chips a:hover { color: #fff; border-color: var(--gold-deep); }
.chips a[aria-current="page"] { color: var(--void); background: var(--gold); border-color: var(--gold); }
.cards-shop { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.card-item .card-body h3 { font-size: 21px; }
.card-item .card-facts { margin-bottom: 0; }
.tag-cat { background: rgba(10, 0, 27, .85); border-color: var(--gold-deep); color: var(--gold); }
.item-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 32px; align-items: start; margin-bottom: 36px; }
.item-price { margin: 6px 0 0; font: 700 30px/1.1 var(--display); color: var(--gold); letter-spacing: .02em; }
.more-head { margin-top: 12px; }
@media (max-width: 860px) { .item-grid { grid-template-columns: 1fr; } }

/* ---------- live metal prices (TradingView widgets; keep their credit links) ---------- */
.metals-wrap { padding-top: 0; }
.metals { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold-2); padding: 18px 18px 6px; }
.metals .section-head { margin-bottom: 12px; }
.metals .metals-tape { min-height: 76px; margin-bottom: 6px; }
.metals .metals-chart { height: 448px; }
.metals .metals-chart .tradingview-widget-container, .metals .metals-chart iframe { height: 100% !important; }
.metals .metals-note { line-height: 1.5 !important; padding: 8px 0 10px; color: var(--ink-3); font-size: 13px; }
@media (max-width: 600px) { .metals { padding: 14px 10px 4px; } .metals .metals-chart { height: 400px; } }
/* Transparent iframes render opaque when their color-scheme differs from ours. */
.metals .metals-tape { color-scheme: light; }

/* ---------- tan ground: dark text wherever content sits directly on it ---------- */
.hero::before { display: none; }
.hero-inner { background: rgba(10, 0, 27, .94); border-top: 3px solid var(--gold-2); border-bottom: 3px solid var(--gold-2); max-width: 980px; margin: clamp(20px, 4vw, 40px) auto 0; box-shadow: 0 24px 50px -24px rgba(35, 28, 14, .7); }
.page-home .hero { padding-inline: var(--gutter); }
.disclaimer-bar { margin-top: clamp(20px, 3vw, 32px); background: var(--green); }
.section-head { border-bottom-color: rgba(35, 28, 14, .3); }
.section-head h2, .claim-head h1, .big-h, .faq-h, .about-blurb h2 { color: var(--tan-ink); }
.section-head p, .claim-loc { color: var(--green); font-weight: 600; }
.section-head p a, .back, .link-arrow, .disclaimer-inline, .fine, .about-blurb p { color: var(--tan-ink-2); }
.back:hover, .section-head p a:hover, .link-arrow:hover { color: var(--green); }
.section > .fine, .narrow > .fine { color: var(--tan-ink-2); }
.card, .claim-side, .facts, .prose, .inquire, .panel, .metals, .faq details, .empty { box-shadow: 0 14px 30px -18px rgba(35, 28, 14, .6); }
.chips a { background: rgba(255, 250, 238, .6); color: var(--tan-ink); border-color: rgba(35, 28, 14, .3); }
.chips a:hover { color: var(--green); border-color: var(--green); }
.chips a[aria-current="page"] { background: var(--green); color: #fff; border-color: var(--green); }
.empty { color: var(--ink); }
.page-home .disclaimer-bar { max-width: 980px; margin-inline: auto; }
