:root {
  --ink: #1e1a16;
  --ink-soft: #3f352c;
  --muted: #74695d;
  --paper: #fbf5e8;
  --paper-strong: #f2e4cc;
  --paper-warm: #fffaf1;
  --line: #d7c4a7;
  --line-strong: #b6945f;
  --green: #244f42;
  --green-deep: #142f2a;
  --red: #923236;
  --blue: #2e6274;
  --brass: #c49343;
  --brass-soft: #ecd19a;
  --white: #fffdf8;
  --shadow: 0 20px 55px rgba(37, 26, 15, 0.18);
  --shadow-soft: 0 12px 35px rgba(37, 26, 15, 0.1);
  --radius: 8px;
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7ecd7 0, var(--paper) 360px, #f8efe1 100%);
  line-height: 1.5;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 620px;
  font-size: 4.5rem;
  font-weight: 900;
}

h2 {
  color: var(--green-deep);
  font-size: 2.8rem;
  font-weight: 900;
}

h3 {
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 12px 56px;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(180, 148, 95, 0.42);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--green-deep);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brass);
  border-radius: 6px;
  background: var(--green-deep);
  color: var(--paper);
  font-weight: 900;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.top-nav a {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--green-deep);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(36, 79, 66, 0.1);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #0f0d0a;
  color: var(--white);
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--brass);
  color: #21160a;
  box-shadow: 0 10px 24px rgba(196, 147, 67, 0.28);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.44);
}

.button.ghost {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--line);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat-pill {
  display: grid;
  min-width: 118px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.09);
}

.stat-pill strong {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

.stat-pill span {
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band,
.collections-section,
.catalog-section,
.local-band,
.contact-band {
  padding: 58px 56px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: center;
  background: var(--paper);
}

.intro-note h2 {
  max-width: 900px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-fact {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(180, 148, 95, 0.4);
  border-radius: var(--radius);
  background: var(--paper-warm);
}

.quick-fact strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.8rem;
  line-height: 1;
}

.quick-fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collections-section {
  background: #f4ead7;
  border-block: 1px solid rgba(180, 148, 95, 0.28);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(36, 79, 66, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(242, 228, 204, 0.82)),
    var(--paper-warm);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.collection-card::before {
  position: absolute;
  right: -22px;
  bottom: -32px;
  color: rgba(36, 79, 66, 0.12);
  content: attr(data-symbol);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.collection-card:hover,
.collection-card:focus-visible {
  border-color: rgba(36, 79, 66, 0.42);
  outline: none;
  transform: translateY(-2px);
}

.collection-card span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card strong {
  position: relative;
  z-index: 1;
  color: var(--green-deep);
  font-size: 1.6rem;
}

.collection-card p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.collection-card small {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-weight: 900;
}

.catalog-section {
  background: var(--paper);
}

.featured-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.featured-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 116px;
  padding: 10px;
  border: 1px solid rgba(180, 148, 95, 0.34);
  border-radius: var(--radius);
  background: #fffaf2;
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.featured-card img,
.featured-card .image-fallback {
  width: 96px;
  height: 96px;
  border-radius: 6px;
}

.featured-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.featured-copy span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-copy strong {
  color: var(--green-deep);
  font-size: 1.02rem;
}

.featured-copy small {
  color: var(--muted);
  font-weight: 800;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(180, 148, 95, 0.34);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--shadow-soft);
}

.search-box,
.select-label,
.filter-group {
  display: grid;
  gap: 8px;
}

.search-box span,
.select-label span,
.filter-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input,
.select-label select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.search-box input:focus,
.select-label select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 98, 116, 0.16);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segmented.stacked {
  display: grid;
  grid-template-columns: 1fr;
}

.segmented button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--green-deep);
  font-weight: 900;
  text-align: left;
}

.segmented button[aria-pressed="true"] {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.catalog-results {
  min-width: 0;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 79, 66, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}

.results-bar strong,
.results-bar span {
  display: block;
}

.results-bar strong {
  color: var(--green-deep);
}

.results-bar span {
  color: var(--muted);
  font-size: 0.9rem;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(46, 98, 116, 0.22);
  border-radius: 4px;
  background: #edf4f3;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 79, 66, 0.17);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.listing-card:hover {
  border-color: rgba(36, 79, 66, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.listing-main {
  display: grid;
  flex: 1;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-strong);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.listing-card:hover .media-frame img {
  transform: scale(1.035);
}

.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(36, 79, 66, 0.95), rgba(46, 98, 116, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.12) 0 1px, transparent 1px 12px);
  color: var(--paper);
}

.image-fallback span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 253, 248, 0.7);
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: 900;
}

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.sold {
  background: var(--red);
  color: var(--white);
}

.image-count {
  margin-left: auto;
  background: rgba(20, 47, 42, 0.88);
  color: var(--white);
}

.listing-body {
  display: grid;
  gap: 9px;
  padding: 15px;
}

.listing-kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.listing-title {
  color: var(--green-deep);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.16;
}

.muted-line {
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 7px;
  border: 1px solid rgba(46, 98, 116, 0.22);
  border-radius: 4px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 15px 15px;
}

.card-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--green-deep);
  font-weight: 900;
}

.card-actions button:hover,
.card-actions button:focus-visible {
  border-color: var(--green);
  outline: none;
}

.empty-state {
  padding: 58px 16px;
  border: 1px dashed rgba(36, 79, 66, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  text-align: center;
}

.empty-state h3 {
  color: var(--green-deep);
  font-size: 1.45rem;
}

.empty-state p {
  max-width: 520px;
  margin: 10px auto 0;
  color: var(--muted);
}

.local-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 26px;
  align-items: start;
  background: #edf4ef;
  border-block: 1px solid rgba(36, 79, 66, 0.16);
}

.local-copy p {
  color: var(--muted);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.local-grid article {
  min-height: 190px;
  padding: 18px;
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 253, 248, 0.72);
}

.step-number {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.local-grid p,
.contact-band p {
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.8fr);
  gap: 24px;
  align-items: start;
  background: var(--paper);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-actions a,
.contact-actions button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--green-deep);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(180, 148, 95, 0.36);
  border-radius: var(--radius);
  background: var(--paper-warm);
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.inquiry-form label.full,
.inquiry-form button,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.inquiry-form textarea {
  min-height: 112px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 98, 116, 0.14);
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form {
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status[data-kind="success"] {
  color: var(--green);
}

.form-status[data-kind="error"] {
  color: var(--red);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(18, 18, 15, 0.74);
}

.item-modal {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(860px, 92svh);
  overflow: auto;
  border: 1px solid rgba(236, 209, 154, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.icon-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 54px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 12px 12px -50px auto;
  border: 1px solid rgba(33, 29, 25, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  font-weight: 900;
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 20px;
}

.modal-gallery {
  display: grid;
  gap: 10px;
  align-content: start;
}

.modal-main-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.thumb-row button {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--paper-strong);
}

.thumb-row button[aria-pressed="true"] {
  border-color: var(--blue);
}

.thumb-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.modal-content h2 {
  font-size: 2.35rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.meta-item {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.meta-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-item strong {
  display: block;
  color: var(--green-deep);
  overflow-wrap: anywhere;
}

.description {
  color: var(--ink);
}

.description p {
  margin: 0 0 12px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-actions a,
.modal-actions button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--green-deep);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.modal-actions button.secondary-action,
.modal-actions a.secondary-action {
  background: var(--paper);
  color: var(--green-deep);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .site-header,
  .intro-band,
  .collections-section,
  .catalog-section,
  .local-band,
  .contact-band {
    padding-inline: 28px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .intro-band,
  .local-band {
    grid-template-columns: 1fr;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3rem;
  }

  .collection-grid,
  .featured-rail {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .segmented.stacked {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-grid {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .section-heading,
  .results-bar {
    align-items: flex-start;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .active-filters,
  .contact-actions {
    justify-content: flex-start;
  }

  .modal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .intro-band,
  .collections-section,
  .catalog-section,
  .local-band,
  .contact-band {
    padding-inline: 16px;
  }

  .site-header {
    gap: 10px;
  }

  .top-nav a {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  .filter-actions,
  .card-actions,
  .meta-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .quick-facts,
  .items-grid,
  .segmented.stacked {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
  }

  .stat-pill {
    min-width: 0;
  }

  .featured-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .featured-card img,
  .featured-card .image-fallback {
    width: 82px;
    height: 82px;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .item-modal {
    max-height: 94svh;
  }

  .modal-content h2 {
    font-size: 1.8rem;
  }

  .thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
