:root {
  color-scheme: light;
  --paper: #e8dcc8;
  --surface: #fffdf8;
  --ink: #1f2a44;
  --muted: #626879;
  --line: #d5c4a5;
  --gold: #c6a75e;
  --gold-strong: #a98536;
  --red: #8d3f31;
  --shadow: 0 18px 45px rgba(31, 42, 68, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.detail-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  padding: 0 max(16px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
}

.detail-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.detail-brand span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 167, 94, 0.78);
  color: var(--gold);
  background: var(--ink);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 20px;
}

.detail-brand em {
  color: var(--gold-strong);
  font-size: 12px;
  font-style: normal;
}

.detail-topbar nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #51534e;
  font-size: 14px;
  font-weight: 800;
}

.detail-page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.detail-hero,
.content-card,
.detail-cta {
  margin: 0 0 18px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(232, 220, 200, 0.82)),
    url("hero-collectibles.png?v=20260701-hero2") center / cover;
}

.detail-kicker {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.detail-actions,
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.related-grid a {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  font-weight: 900;
}

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

.question-list article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.detail-cta {
  text-align: center;
}

.detail-footer {
  padding: 24px 16px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.nav,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 167, 94, 0.78);
  color: var(--gold);
  background: var(--ink);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-note {
  display: block;
  margin-top: -3px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #51534e;
  font-size: 14px;
  font-weight: 800;
}

.phone-pill,
.primary-btn,
.outline-btn {
  min-height: 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.phone-pill,
.primary-btn {
  border: 1px solid var(--gold);
  color: #fff;
  background: linear-gradient(135deg, #c6a75e, #a98536);
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.18);
}

.phone-pill,
.primary-btn,
.outline-btn {
  padding: 0 20px;
}

.outline-btn {
  border: 1px solid var(--gold);
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
}

.hero {
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.84)),
    url("hero-collectibles.png?v=20260701-hero2") center / cover;
}

.breadcrumb {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--gold-strong);
}

.hero-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.lead {
  max-width: 650px;
  color: #51534e;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.image-card,
.panel,
.case,
.faq-item,
.fact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.image-card {
  padding: 12px;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: contain;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
}

.image-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

section {
  padding: 30px 0;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 14px;
  align-items: end;
  margin-bottom: 12px;
}

.section-title h2,
.cta h2 {
  margin-bottom: 0;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
}

.section-title p {
  margin-bottom: 2px;
  color: var(--muted);
}

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

.update-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.update-date {
  margin: 0 0 10px;
  color: var(--gold-strong);
  font-size: 15px;
  font-weight: 900;
}

.update-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.update-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 122, 72, 0.12);
  color: #1f7a48;
  font-weight: 900;
  line-height: 1;
}

.fact {
  min-height: 76px;
  padding: 11px 12px;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fact strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.case-meta {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}

.case-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.case-photo-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #fff;
}

.case-photo-grid figcaption {
  padding: 9px 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-swipe-hint {
  display: none;
}

.valuation-panel {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(198, 167, 94, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
}

.valuation-panel h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 24px;
}

.case-detail-panel {
  overflow: hidden;
}

.hot-market {
  display: grid;
  gap: 10px;
}

.hot-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.hot-row span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
}

.hot-row strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

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

.market-update-card {
  min-height: 176px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.market-update-card.has-image {
  padding: 0;
  overflow: hidden;
}

.market-card-thumb {
  height: 128px;
  background: #f7f2e7;
  border-bottom: 1px solid var(--line);
}

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

.market-card-body {
  min-height: 0;
  padding: 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.market-update-card span {
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
}

.market-update-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.market-update-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.market-update-card ul {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.market-update-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.market-update-card li::before {
  content: "✓ ";
  color: #1f7a48;
  font-weight: 900;
}

.market-update-card em {
  margin-top: auto;
  padding-top: 12px;
  color: var(--gold-strong);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.swipe-note {
  display: none;
}

.market-article-list {
  display: grid;
  gap: 18px;
}

.market-article {
  scroll-margin-top: 92px;
}

.market-article-image {
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f2e4;
}

.market-article-image img {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: cover;
}

.market-article-image figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.market-article .valuation-panel {
  margin-bottom: 12px;
}

.more-row {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.content-grid {
  align-items: start;
}

.panel {
  padding: 16px;
}

.panel h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.4;
}

.panel p,
.panel li {
  color: var(--muted);
  font-size: 14px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.data-table th,
.data-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  background: rgba(232, 220, 200, 0.54);
  font-size: 14px;
}

.data-table td {
  color: var(--ink);
  font-size: 15px;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.category-directory .data-table {
  min-width: 0;
}

.detail-link {
  color: var(--gold-strong);
  font-weight: 900;
  white-space: nowrap;
}

.subcategory-hero {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.note {
  border-left: 3px solid var(--gold);
  background: rgba(232, 220, 200, 0.28);
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 122, 72, 0.12);
  color: #1f7a48;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.directory-panel {
  margin-top: 12px;
}

.directory-subtitle {
  margin: 16px 0 4px;
  color: var(--ink);
  font-size: 16px;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
  margin: 8px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.directory-list-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}

.catalog-section {
  padding: 0 0 22px;
}

.catalog-panel h2 {
  margin-bottom: 8px;
}

.catalog-group {
  margin-top: 16px;
}

.catalog-group h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.catalog-group .directory-list {
  margin-top: 6px;
}

.catalog-valuation {
  margin-top: 16px;
}

.directory-list li::marker {
  color: var(--gold-strong);
  font-weight: 900;
}

.directory-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.local-deal {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(198, 167, 94, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.local-deal-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.local-deal-card + .local-deal-card {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(213, 196, 165, 0.72);
}

.local-deal-thumb {
  overflow: hidden;
  border: 1px solid rgba(213, 196, 165, 0.82);
  border-radius: var(--radius);
  background: #fff;
}

.local-deal-thumb img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

.local-deal-body {
  min-width: 0;
}

.local-deal span {
  display: block;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
}

.local-deal strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 17px;
}

.local-deal em {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

.local-deal .case-detail-link {
  min-height: 40px;
  margin-top: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(198, 167, 94, 0.72);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 900;
}

.stamp-carousel {
  display: grid;
  gap: 8px;
}

.carousel-kicker {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.carousel-track {
  display: flex;
  width: 600%;
  animation: stampSlide 24s infinite;
}

.carousel-item {
  width: 16.666%;
  padding: 10px;
  flex: 0 0 16.666%;
}

.carousel-item img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}

.carousel-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}

.carousel-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.compact-carousel .carousel-item {
  padding: 8px;
}

.compact-carousel .carousel-item img {
  aspect-ratio: 1.65 / 1;
}

.material-carousel .carousel-item img {
  height: clamp(260px, 58vw, 430px);
  aspect-ratio: auto;
  object-fit: contain;
}

.material-carousel .carousel-item strong {
  font-size: 18px;
}

.material-carousel .carousel-item p {
  display: none;
}

@keyframes stampSlide {
  0%, 13% { transform: translateX(0); }
  16.666%, 29.666% { transform: translateX(-16.666%); }
  33.333%, 46.333% { transform: translateX(-33.333%); }
  50%, 63% { transform: translateX(-50%); }
  66.666%, 79.666% { transform: translateX(-66.666%); }
  83.333%, 96.333% { transform: translateX(-83.333%); }
  100% { transform: translateX(0); }
}

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

.article-nav a {
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font-weight: 900;
}

.article-nav span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-grid,
.case-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.case-search-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: -4px 0 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.case-search-bar label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.case-search-bar input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 8px 12px;
}

.case-result-count {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.empty-case-result {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #c6a75e, #a98536);
  color: #fff;
}

.case,
.faq-item {
  padding: 16px;
}

.case strong,
.faq-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.case p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.case .case-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 900;
}

.case em {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}

.cta {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner strong {
  color: #fff;
}

@media (max-width: 880px) {
  .question-list {
    grid-template-columns: 1fr;
  }

  .nav-actions a:first-child {
    display: none;
  }

  .hero-grid,
  .section-title,
  .content-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .facts,
  .card-grid,
  .case-grid,
  .faq-grid,
  .case-photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .detail-topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .detail-topbar nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .detail-brand {
    width: 100%;
  }

  .detail-brand em {
    display: block;
  }

  .topbar {
    position: static;
    backdrop-filter: none;
  }

  .nav,
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .brand-name {
    font-size: 20px;
  }

  .phone-pill {
    display: none;
  }

  .hero {
    padding: 14px 0 16px;
  }

  section {
    padding: 14px 0;
  }

  #case-detail {
    padding-top: 8px;
  }

  .breadcrumb {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    margin-bottom: 6px;
    font-size: 30px;
  }

  .lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 10px;
    gap: 8px;
  }

  .image-card {
    padding: 8px;
  }

  .image-card img {
    padding: 4px;
  }

  .image-caption {
    margin-top: 6px;
    font-size: 12px;
  }

  .section-title {
    gap: 6px;
    margin-bottom: 8px;
  }

  .section-title h2,
  .cta h2 {
    font-size: 25px;
  }

  .section-title p {
    font-size: 13px;
    line-height: 1.45;
  }

  .case-detail-panel .section-title {
    margin-bottom: 6px;
  }

  .case-detail-panel .section-title h2 {
    margin-bottom: 0;
    font-size: 23px;
    line-height: 1.22;
  }

  .case-detail-panel .section-title p {
    display: none;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }

  .fact {
    min-height: 0;
    padding: 8px 10px;
  }

  .fact:nth-child(3) {
    grid-column: 1 / -1;
  }

  .fact span {
    font-size: 11px;
  }

  .fact strong {
    font-size: 14px;
    line-height: 1.32;
  }

  .case-meta {
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.45;
  }

  .case-photo-grid {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    margin: 0 -12px 10px;
    padding: 0 12px 2px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .case-photo-grid::-webkit-scrollbar {
    display: none;
  }

  .case-photo-grid figure {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .case-photo-grid img {
    aspect-ratio: 1.7 / 1;
  }

  .case-photo-grid figcaption {
    padding: 6px 9px;
    font-size: 12px;
  }

  .case-swipe-hint {
    min-height: 24px;
    margin: -4px 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .market-update-strip {
    display: flex;
    gap: 10px;
    margin: 0 -12px;
    padding: 0 12px 2px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .market-update-strip::-webkit-scrollbar {
    display: none;
  }

  .market-update-card {
    flex: 0 0 86%;
    min-height: 0;
    padding: 13px;
    scroll-snap-align: start;
  }

  .market-update-card.has-image {
    padding: 0;
  }

  .market-card-thumb {
    height: 112px;
  }

  .market-card-body {
    padding: 13px;
  }

  .market-update-card span {
    font-size: 11px;
  }

  .market-update-card strong {
    margin-top: 4px;
    font-size: 17px;
  }

  .market-update-card p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .market-update-card ul {
    gap: 2px;
    margin-top: 7px;
  }

  .market-update-card li {
    font-size: 12px;
    line-height: 1.38;
  }

  .market-update-card em {
    padding-top: 8px;
    font-size: 13px;
  }

  .market-article-list {
    gap: 12px;
  }

  .market-article {
    scroll-margin-top: 12px;
  }

  .market-article-image {
    margin-bottom: 12px;
  }

  .swipe-note {
    min-height: 22px;
    margin: 4px 0 -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-strong);
    font-size: 12px;
    font-weight: 900;
  }

  .valuation-panel {
    margin-top: 0;
    padding: 10px 11px;
  }

  .valuation-panel h3 {
    margin-bottom: 6px;
    font-size: 19px;
  }

  .valuation-panel .check-list {
    gap: 6px;
  }

  .valuation-panel .check-list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 7px;
    font-size: 14px;
    line-height: 1.45;
  }

  .panel,
  .cta {
    padding: 12px;
  }

  .panel p,
  .panel li {
    font-size: 13px;
    line-height: 1.5;
  }

  .local-deal {
    margin-top: 8px;
    padding: 10px 11px;
  }

  .local-deal-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 9px;
  }

  .local-deal-thumb img {
    min-height: 82px;
  }

  .local-deal span {
    font-size: 12px;
  }

  .local-deal strong {
    font-size: 16px;
  }

  .local-deal p {
    margin-bottom: 7px;
  }

  .local-deal em {
    margin-top: 4px;
    font-size: 20px;
  }

.local-deal .case-detail-link {
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
  }

  .article-nav {
    gap: 7px;
    margin-top: 8px;
  }

  .article-nav a {
    min-height: 46px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .panel h2 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.25;
  }

  .panel h3 {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .card-grid,
  .case-grid,
  .faq-grid {
    gap: 8px;
  }

  .case-search-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .case-search-bar .outline-btn {
    width: 100%;
  }

  .case,
  .faq-item {
    padding: 12px;
  }

  .case strong,
  .faq-item strong {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.35;
  }

  .case p,
  .faq-item p {
    font-size: 13px;
    line-height: 1.45;
  }

  .case em {
    margin-top: 6px;
    font-size: 18px;
  }

  .case .case-link {
    margin-top: 6px;
    font-size: 13px;
  }

  .directory-list {
    grid-template-columns: 1fr;
    gap: 5px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
  }

  .category-directory .table-wrap {
    overflow-x: visible;
  }

  .category-directory .data-table,
  .category-directory .data-table thead,
  .category-directory .data-table tbody,
  .category-directory .data-table tr,
  .category-directory .data-table th,
  .category-directory .data-table td {
    display: block;
  }

  .category-directory .data-table thead {
    display: none;
  }

  .category-directory .data-table tr {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .category-directory .data-table tr:last-child {
    border-bottom: 0;
  }

  .category-directory .data-table td {
    padding: 4px 0;
    border-bottom: 0;
  }

  .category-directory .data-table td:first-child {
    color: var(--gold-strong);
    font-size: 18px;
    font-weight: 900;
  }

  .category-directory .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
  }

  .faq-grid {
    gap: 8px;
  }

  .faq-item {
    padding: 13px;
  }

  .faq-item strong {
    margin-bottom: 4px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions .primary-btn,
  .hero-actions .outline-btn,
  .cta .primary-btn {
    width: 100%;
  }

  .footer-inner {
    display: grid;
  }
}

.local-deal-list {
  display: grid;
  gap: 10px;
}

.local-deal-card {
  padding: 12px;
  border: 1px solid rgba(198, 167, 94, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.local-deal .case-more-link {
  width: 100%;
  margin-top: 12px;
  background: rgba(255, 253, 248, 0.9);
}
