
  :root {
    --forest: #1a472a;
    --forest-deep: #143820;
    --pine: #245a35;
    --sage: #3a7d50;
    --mint: #5ba872;
    --white: #ffffff;
    --off-white: #f7f8f7;
    --light-grey: #eef0ee;
    --mid-grey: #dde1dd;
    --text-dark: #1a2a1f;
    --text-body: #3d4f42;
    --text-muted: #6b7f70;
    --text-light: #96a69a;
    --border: rgba(26, 71, 42, 0.1);
    --border-hover: rgba(26, 71, 42, 0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.8rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
  }

  .nav-logo img {
    height: 44px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--forest);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--forest); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--forest);
    border: none;
    padding: 0.7rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--pine);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(26, 71, 42, 0.2);
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 3rem 3rem;
    background: var(--off-white);
  }


  .hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(247, 248, 247, 0.65) 0%,
      rgba(247, 248, 247, 0.72) 35%,
      rgba(247, 248, 247, 0.80) 60%,
      rgba(247, 248, 247, 0.92) 85%,
      rgba(247, 248, 247, 1) 100%
    );
    z-index: 1;
  }


  /* Floating card shapes */

  @keyframes float1 { 0%, 100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-20px); } }
  @keyframes float2 { 0%, 100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-15px); } }
  @keyframes float3 { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(7deg) translateY(-18px); } }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
  }

  .hero-logo {
    max-width: 500px;
    width: 75%;
    margin: 0 auto 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    letter-spacing: 3px;
    color: var(--forest-deep);
    line-height: 1.0;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(255,255,255,0.6);
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #0e2817;
    text-shadow: 0 1px 4px rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-body);
    text-shadow: 0 1px 4px rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--mid-grey);
    padding: calc(1rem - 1px) calc(2.5rem - 1px);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  .btn-ghost:hover {
    border-color: var(--forest);
    color: var(--forest);
    transform: translateY(-2px);
  }

  .hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }

  .btn-primary:hover {
    background: var(--pine);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(26, 71, 42, 0.2);
  }

  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
    padding: calc(1rem - 1px) calc(2.5rem - 1px);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }

  .btn-secondary:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
  }

  @keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  /* ===== SECTIONS ===== */
  section { padding: 4.5rem 3rem; }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    color: var(--forest);
    margin-bottom: 1.5rem;
  }

  /* ===== STATS ===== */
  .stats {
    background: var(--forest);
    padding: 4rem 3rem;
  }

  .stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); letter-spacing: 2px; line-height: 1; }
  .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

  /* ===== ABOUT ===== */
  .about {
    background: var(--white);
    position: relative;
  }

  .about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: var(--text-body); margin-bottom: 1.5rem; }
  .about-text p strong { color: var(--forest); font-weight: 600; }

  .about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .about-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }

  .about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--forest); transform: scaleX(0); transition: transform 0.4s; }
  .about-card:hover::before { transform: scaleX(1); }
  .about-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: 0 10px 30px rgba(26, 71, 42, 0.08); }

  .about-card-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .about-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; color: var(--forest); margin-bottom: 0.5rem; }
  .about-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

  /* ===== FEATURED ===== */
  .featured { background: var(--light-grey); }

  .featured-header { max-width: 1200px; margin: 0 auto 3.5rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
  .featured-filters { display: flex; gap: 0.8rem; flex-wrap: wrap; }

  .filter-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 0.6rem 1.4rem; background: var(--white); color: var(--text-muted);
    border: 1px solid var(--mid-grey); cursor: pointer; transition: all 0.3s;
  }
  .filter-btn.active, .filter-btn:hover { color: var(--white); border-color: var(--forest); background: var(--forest); }

  .card-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.8rem; }

  .card-item { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: all 0.4s; border-radius: 4px; text-decoration: none; color: inherit; display: block; cursor: pointer; }
  .card-item:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26, 71, 42, 0.1); }

  .card-image { aspect-ratio: 3/4; background: var(--off-white); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }

  .card-image-placeholder {
    width: 55%; height: 70%;
    border: 2px solid rgba(26, 71, 42, 0.1); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
    background: linear-gradient(145deg, rgba(26, 71, 42, 0.03), rgba(255, 255, 255, 0.8));
  }

  .card-image-placeholder .grade { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--forest); letter-spacing: 2px; }
  .card-image-placeholder .type { font-family: 'Barlow Condensed', sans-serif; font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); }

  .card-badge { position: absolute; top: 0.8rem; right: 0.8rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 0.7rem; background: var(--forest); color: var(--white); border-radius: 2px; }
  .card-badge.sold { background: #b33a3a; color: var(--white); }

  .card-info { padding: 1.2rem 1.4rem 1.5rem; }
  .card-info h3 { font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; line-height: 1.3; }
  .card-info .card-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.8rem; }
  .card-info .card-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--forest); letter-spacing: 1px; }
  .card-info .card-price .ask { font-family: 'Barlow', sans-serif; font-size: 0.65rem; font-weight: 400; color: var(--text-light); letter-spacing: 0; margin-left: 0.3rem; }

  /* ===== COLLECTORS ===== */
  .collectors { background: var(--off-white); position: relative; }

  .collectors-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

  .collector-card {
    background: var(--off-white); border: 1px solid var(--border);
    padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: all 0.4s;
  }
  .collector-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(26, 71, 42, 0.08); }
  .collector-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--forest); }

  .collector-photo {
    width: 100%; 
    height: 340px; 
    overflow: hidden; 
    margin: -3rem -2.5rem 1.5rem -2.5rem; 
    width: calc(100% + 5rem);
    border-bottom: 3px solid var(--forest);
  }
  .collector-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  .collector-era { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--sage); margin-bottom: 0.8rem; }
  .collector-name { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 3px; color: var(--forest); margin-bottom: 0.3rem; }
  .collector-role { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem; }
  .collector-desc { font-size: 0.92rem; font-weight: 300; line-height: 1.7; color: var(--text-body); }
  .collector-focus { margin-top: 1.5rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .focus-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.35rem 0.9rem; border: 1px solid var(--border-hover); color: var(--forest); background: var(--white); }

  /* ===== SHOWS ===== */
  .shows { background: var(--white); }

  /* ===== TWO DOORS ===== */
  /* ===== BUY LIST CHART (homepage) ===== */
  .buying-home { background: var(--white); padding: 5rem 3rem 1rem; }
  .buying-head { max-width: 900px; margin: 0 auto 2.6rem; text-align: center; }
  .buying-head .section-sub em { font-style: italic; color: var(--forest); font-weight: 500; }

  .chart-wrap {
    max-width: 1200px; margin: 0 auto;
    border: 1px solid var(--border); border-radius: 4px;
    overflow: hidden; background: var(--white);
  }
  table.buy-chart { width: 100%; border-collapse: collapse; }
  table.buy-chart thead th {
    background: var(--forest); color: var(--white); text-align: left;
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 1.05rem 1.3rem; white-space: nowrap;
  }
  table.buy-chart tbody tr { border-top: 1px solid var(--border); transition: background 0.2s; }
  table.buy-chart tbody tr:first-child { border-top: none; }
  table.buy-chart tbody tr:hover { background: var(--off-white); }
  table.buy-chart td {
    padding: 1.15rem 1.3rem; vertical-align: top;
    font-size: 0.95rem; font-weight: 300; color: var(--text-body); line-height: 1.55;
  }

  table.buy-chart tbody tr.top-want { background: rgba(176, 124, 46, 0.045); }
  table.buy-chart tbody tr.top-want:hover { background: rgba(176, 124, 46, 0.09); }
  table.buy-chart tbody tr.top-want td.col-player { box-shadow: inset 3px 0 0 var(--gold); }

  td.col-player { width: 22%; }
  .p-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 1px;
    color: var(--text-dark); line-height: 1.1;
  }
  .flag {
    display: inline-block; margin-top: 0.35rem;
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--white); background: var(--gold);
    padding: 0.2rem 0.55rem; border-radius: 2px;
  }
  .p-meta {
    display: block; margin-top: 0.4rem;
    font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.3px;
  }
  td.col-want  { width: 34%; }
  td.col-grade { width: 20%; }
  td.col-pay   { width: 24%; font-weight: 500; color: var(--forest); }

  .chart-note {
    max-width: 1200px; margin: 1.3rem auto 0; text-align: center;
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.65;
  }
  .chart-actions {
    display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap;
    margin-top: 2.2rem;
  }
  .chart-actions .btn-primary,
  .chart-actions .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    padding: 0.95rem 2rem; transition: all 0.3s; border-radius: 2px;
  }
  .chart-actions .btn-primary { background: var(--forest); color: var(--white); }
  .chart-actions .btn-primary:hover { background: var(--pine); transform: translateY(-1px); }
  .chart-actions .btn-ghost { background: transparent; color: var(--forest); border: 1px solid var(--border-hover); }
  .chart-actions .btn-ghost:hover { background: var(--off-white); }

  /* On phones a 4-column table is unreadable — stack each row into a card. */
  @media (max-width: 820px) {
    .chart-wrap { border: none; border-radius: 0; overflow: visible; }
    table.buy-chart, table.buy-chart tbody, table.buy-chart tr, table.buy-chart td { display: block; width: 100%; }
    table.buy-chart thead { display: none; }
    table.buy-chart tbody tr {
      border: 1px solid var(--border); border-radius: 4px;
      margin-bottom: 0.9rem; padding: 1.1rem 1.2rem;
      background: var(--white);
    }
    table.buy-chart tbody tr.top-want {
      border-left: 3px solid var(--gold);
      background: rgba(176, 124, 46, 0.045);
    }
    table.buy-chart tbody tr.top-want td.col-player { box-shadow: none; }
    table.buy-chart td { padding: 0; border: none; }
    table.buy-chart td.col-player { margin-bottom: 0.7rem; }
    table.buy-chart td:not(.col-player) {
      display: flex; justify-content: space-between; gap: 1rem;
      padding: 0.5rem 0; border-top: 1px solid var(--border);
      font-size: 0.9rem; text-align: right;
    }
    table.buy-chart td:not(.col-player)::before {
      content: attr(data-label);
      flex-shrink: 0; text-align: left;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light);
    }
  }

  .shows-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

  .schedule-year-divider {
    display: flex; align-items: center; gap: 1.25rem;
    margin: 1.25rem 0 0.5rem;
  }
  .schedule-year-divider:first-child { margin-top: 0; }
  .schedule-year-divider::before,
  .schedule-year-divider::after {
    content: ""; flex: 1; height: 1px; background: var(--border-hover); opacity: 0.5;
  }
  .schedule-year-divider span {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 4px;
    color: var(--sage); line-height: 1;
  }

  .show-note { font-family: 'Barlow', sans-serif; font-weight: 400; color: var(--sage); white-space: nowrap; }

  .show-item {
    display: grid; grid-template-columns: 120px 1fr auto; gap: 2rem; align-items: center;
    padding: 1.8rem 2rem; background: #e8f1ea; border: 1px solid var(--border); transition: all 0.3s; border-radius: 4px;
  }
  .show-item:hover { border-color: var(--border-hover); box-shadow: 0 8px 25px rgba(26, 71, 42, 0.06); }

  .show-date { text-align: center; }
  .show-date .month { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--sage); }
  .show-date .day { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--forest); line-height: 1; white-space: nowrap; }
  .show-info h3 { font-family: 'Barlow', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; }
  .show-info p { font-size: 0.85rem; color: var(--text-muted); }
  .show-status { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0.5rem 1.2rem; border: 1px solid var(--forest); color: var(--forest); white-space: nowrap; border-radius: 2px; }

  /* ===== NEWSLETTER ===== */
  .newsletter { background: var(--forest); text-align: center; padding: 4.5rem 3rem; position: relative; }
  .newsletter .section-label { color: rgba(255,255,255,0.5); }
  .newsletter .section-title { color: var(--white); }
  .newsletter-inner { max-width: 600px; margin: 0 auto; }
  .newsletter p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }

  .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
  .newsletter-form input { flex: 1; font-family: 'Barlow', sans-serif; font-size: 0.9rem; padding: 1rem 1.4rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-right: none; color: var(--white); outline: none; transition: border-color 0.3s; border-radius: 0; }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
  .newsletter-form button { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 1rem 2rem; background: var(--white); color: var(--forest); border: 1px solid var(--white); cursor: pointer; transition: all 0.3s; white-space: nowrap; }
  .newsletter-form button:hover { background: var(--off-white); }

  /* ===== SHOW RECAPS ===== */
  .recaps { padding: 4.5rem 2rem; background: var(--off-white); }
  .recaps-grid {
    display: flex; gap: 2rem; max-width: 1100px; margin: 0 auto;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem; scroll-behavior: smooth;
  }
  .recaps-grid::-webkit-scrollbar { height: 6px; }
  .recaps-grid::-webkit-scrollbar-track { background: var(--light-grey); border-radius: 3px; }
  .recaps-grid::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }
  .recaps-grid > .recap-card { min-width: 320px; flex: 0 0 320px; scroll-snap-align: start; }
  .recap-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); transition: all 0.4s ease;
  }
  .recap-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,71,42,0.1); border-color: var(--border-hover); }
  .recap-header {
    background: linear-gradient(135deg, var(--forest), var(--pine));
    padding: 1.5rem; color: var(--white);
  }
  .recap-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.05em; }
  .recap-header .recap-date { font-size: 0.85rem; opacity: 0.8; margin-top: 0.25rem; font-weight: 300; }
  .recap-image { width: 100%; height: 200px; object-fit: cover; display: block; }
  .recap-body { padding: 1.5rem; }
  .recap-body p { color: var(--text-body); line-height: 1.7; font-size: 0.95rem; }
  .recap-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
  .recap-highlights span {
    background: var(--light-grey); color: var(--forest); padding: 0.3rem 0.75rem;
    border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  }

  /* ===== INSTAGRAM FEED ===== */
  .instagram-feed { padding: 4.5rem 2rem; background: var(--white); }
  .ig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .ig-embed-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); padding: 1rem; transition: all 0.4s ease;
  }
  .ig-embed-card:hover { box-shadow: 0 8px 24px rgba(26,71,42,0.08); }
  .ig-embed-card iframe { border: none !important; width: 100% !important; }
  .ig-placeholder-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .ig-placeholder-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); padding: 2rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
  }
  .ig-icon { width: 60px; height: 60px; }
  .ig-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white; padding: 0.75rem 1.75rem; border-radius: 30px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .ig-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(131,58,180,0.3); }

  /* ===== FOOTER ===== */
  footer { background: var(--off-white); padding: 3rem; border-top: 1px solid var(--border); }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
  .footer-logo img { height: 36px; width: auto; opacity: 0.6; }
  .footer-copy { font-size: 0.75rem; color: var(--text-light); margin-top: 0.4rem; }
  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--forest); }
  .footer-social { display: flex; gap: 1rem; }
  .social-icon { width: 36px; height: 36px; border: 1px solid var(--border-hover); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; transition: all 0.3s; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 1px; border-radius: 2px; }
  .social-icon:hover { border-color: var(--forest); color: var(--white); background: var(--forest); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 3.25rem 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .collectors-grid { grid-template-columns: 1fr; }
    .show-item { grid-template-columns: 80px 1fr; gap: 1rem; }
    .show-status { grid-column: 1 / -1; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .buying-home { padding: 3.25rem 1.5rem 0.5rem; }
    .chart-actions { flex-direction: column; }
    .chart-actions a { text-align: center; }
    .footer-inner { flex-direction: column; text-align: center; }
  }

  @media (max-width: 600px) {
    .card-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.2); }
    .featured-filters { justify-content: center; }
  }


  /* ===== SHOW CITY TILES ===== */
  .show-cities-grid {
    max-width: 1100px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .show-city-tile {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .show-city-tile::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--forest);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .show-city-tile:hover::before { transform: scaleX(1); }
  .show-city-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,71,42,0.1); }

  .show-city-tile.featured-city {
    background: var(--forest);
    border-color: var(--forest);
  }
  .show-city-tile.featured-city .city-name { color: var(--white); }
  .show-city-tile.featured-city .city-shows { color: rgba(255,255,255,0.7); }
  .show-city-tile.featured-city .city-role { color: var(--mint); }
  .show-city-tile.featured-city::before { background: var(--mint); }

  .show-city-tile.out-of-state { border-style: dashed; }

  .city-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.5rem;
  }
  .featured-city .city-badge { color: rgba(255,255,255,0.6); }

  .city-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .city-shows {
    font-family: 'Barlow', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
  }

  .city-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
  }

  /* ===== BOOTH GALLERY ===== */
  .booth-gallery-wrap {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
  }

  .booth-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .booth-photo {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    min-height: 200px;
  }

  .booth-photo:hover .photo-cta-overlay { opacity: 1; }

  .booth-photo-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .booth-photos-right {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
  }

  .booth-photos-right .booth-photo-inner { min-height: 130px; }

  .photo-overlay-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(20,56,32,0.85));
    padding: 1.5rem 1rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 2;
  }

  .photo-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
  }

  .photo-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
  }

  .photo-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,71,42,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
  }

  /* Illustrated booth mockups */
  .booth-photo-mock {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
  }

  .booth-main {
    background: linear-gradient(160deg, #e8ede9 0%, #d5e0d8 100%);
    min-height: 320px;
  }

  .booth-mock-banner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--forest);
    background: var(--white);
    border: 2px solid var(--forest);
    padding: 0.4rem 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .booth-mock-table {
    position: absolute;
    bottom: 2rem; left: 10%; right: 10%;
    height: 70px;
    background: #c8d5ca;
    border-radius: 2px;
    border-top: 3px solid var(--forest);
  }

  .booth-mock-cards {
    display: flex;
    gap: 0.4rem;
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .booth-mock-card {
    width: 28px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border-hover);
    border-radius: 2px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  }

  .booth-mock-crowd {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2rem;
    background: linear-gradient(to top, rgba(26,71,42,0.15), transparent);
  }

  .booth-sm {
    background: linear-gradient(160deg, #dce8de 0%, #c8d9cc 100%);
    min-height: 130px;
  }
  .booth-sm--alt { background: linear-gradient(160deg, #e2eae0 0%, #d0dcce 100%); }
  .booth-sm--dark { background: linear-gradient(160deg, #c8d5ca 0%, #b8c8bb 100%); }

  .booth-mock-deal {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
  }

  .booth-mock-deal-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forest);
  }

  .gallery-photo-note {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #f9a825;
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    color: #5d4037;
    border-radius: 0 4px 4px 0;
  }

  /* ===== SHOW CREDIBILITY BAR ===== */
  .show-cred-bar {
    background: var(--forest-deep);
    padding: 2.5rem 3rem;
    margin: 4rem 0 2rem;
  }

  .show-cred-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .show-cred-stat {
    text-align: center;
    padding: 0.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .cred-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: var(--mint);
    line-height: 1;
  }

  .cred-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }

  .show-cred-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.12);
  }

  /* ===== ROLE LEGEND ===== */
  .role-badge-explain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .role-pip {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
  }
  .role-sponsor { background: var(--forest); }
  .role-booth { background: var(--sage); }
  .role-premium { background: #b8860b; }
  .role-walking { background: var(--text-light); }

  .show-status--national {
    background: #b8860b !important;
    color: var(--white) !important;
  }

  .show-item--national {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-color: #9c7209;
  }
  .show-item--national .show-date .month,
  .show-item--national .show-date .day,
  .show-item--national .show-info h3,
  .show-item--national .show-info p { color: #fff; }
  .show-item--national .show-status--national {
    background: #fff !important;
    color: #b8860b !important;
    border-color: #fff;
  }

  @media (max-width: 900px) {
    .show-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .booth-gallery { grid-template-columns: 1fr; }
    .booth-photos-right { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
    .show-cred-stat { padding: 0.5rem 1.5rem; }
    .show-cred-divider { display: none; }
  }

  @media (max-width: 600px) {
    .show-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .booth-photos-right { grid-template-columns: 1fr; }
  }
  #sell form ::placeholder { color: rgba(255,255,255,0.55); }
  #sell form input:focus,
  #sell form select:focus,
  #sell form textarea:focus { border-color: var(--mint); background: rgba(255,255,255,0.1); }
  #sell form select option { background: var(--white); }
  #sell form button:hover { background: var(--off-white); transform: translateY(-1px); }

/* ---- appended by the shows/recaps split ---- */
a.recap-card { display: block; text-decoration: none; color: inherit; }
.recaps-index-grid { display: grid; gap: 2rem; margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); align-items: start; }
.recaps-index-grid .recap-card { min-width: 0; }
.recaps-index-grid .recap-image { height: 200px; }
a.recap-card .recap-body p { color: var(--text-body); }
.recap-card--all { display: flex; align-items: center; justify-content: center;
  background: var(--off-white); border-style: dashed; }
.recap-all-inner { text-align: center; padding: 2rem 1.5rem; }
.recap-all-count { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 3.4rem;
  line-height: 1; color: var(--forest); }
.recap-all-label { display: block; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem;
  color: var(--text-muted); margin-top: 0.3rem; }
.recap-all-cta { display: block; margin-top: 1.2rem; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; color: var(--forest);
  font-weight: 700; }
.detail-wrap { max-width: 900px; margin: 0 auto; padding: 9rem 2rem 5rem; }
.index-wrap  { max-width: 1100px; margin: 0 auto; padding: 9rem 2rem 5rem; }
.crumbs { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2rem;
          font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.06em;
          text-transform: uppercase; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--forest); }
.detail-wrap h1, .index-wrap h1 { font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; color: var(--forest);
  letter-spacing: 0.01em; margin: 0.4rem 0 0.6rem; }
.detail-dateline { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.detail-venue { color: var(--text-muted); margin-top: 0.4rem; font-size: 0.98rem; }
.detail-lede { font-size: 1.12rem; line-height: 1.85; color: var(--text-body);
  margin: 1.8rem 0; max-width: 42rem; }
.detail-wrap p { line-height: 1.85; margin-bottom: 1.2rem; max-width: 42rem; }
.detail-hero { margin: 2.2rem 0; border-radius: 4px; overflow: hidden;
  border-bottom: 3px solid var(--forest); }
.detail-hero img { width: 100%; height: auto; max-height: 70vh;
  object-fit: contain; display: block; background: #0d0f0d; }
.detail-hero figcaption { padding: 0.7rem 0.9rem; font-size: 0.82rem; line-height: 1.5;
  color: var(--text-muted); background: var(--off-white); border-top: 1px solid var(--border); }
.detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2.5rem 0; }
.btn-solid, .btn-outline { display: inline-block; padding: 0.95rem 1.8rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; font-size: 0.95rem;
  border-radius: 2px; transition: all 0.25s ease; }
.btn-solid { background: var(--forest); color: #fff; border: 1px solid var(--forest); }
.btn-solid:hover { background: var(--forest-deep); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border-hover); color: var(--forest); }
.btn-outline:hover { border-color: var(--forest); background: var(--off-white); }
.btn-solid:focus-visible, .btn-outline:focus-visible,
.recap-tile a:focus-visible, .show-item-link:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 3px; }
.detail-block { border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 2rem; }
.plain-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
  }
  .plain-list a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 71, 42, 0.2);
    padding-bottom: 2px;
  }
  .plain-list a:hover { border-bottom-color: var(--forest); }
  .detail-block h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem;
  color: var(--forest); letter-spacing: 0.02em; margin-bottom: 0.9rem; }
.detail-pager { display: flex; justify-content: space-between; gap: 1.5rem;
  border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 1.5rem;
  font-size: 0.92rem; flex-wrap: wrap; }
.detail-pager a { color: var(--text-muted); text-decoration: none; }
.detail-pager a:hover { color: var(--forest); }
.tile-grid { display: grid; gap: 2rem; margin-top: 3rem;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr)); }
.recap-tile { border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  background: #fff; transition: all 0.3s ease; }
.recap-tile:hover { border-color: var(--border-hover); transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,71,42,0.08); }
.recap-tile a { text-decoration: none; color: inherit; display: block; }
.recap-tile img { width: 100%; aspect-ratio: 16/9; object-fit: cover;
  object-position: center 30%; display: block; background: var(--light-grey); }
.recap-tile .tile-body { padding: 1.3rem 1.4rem 1.6rem; }
.recap-tile h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem;
  color: var(--forest); letter-spacing: 0.02em; margin-bottom: 0.3rem; }
.recap-tile .tile-date { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.recap-tile .tile-excerpt { font-size: 0.94rem; line-height: 1.65;
  color: var(--text-muted); margin-top: 0.8rem; }
.show-item-link { text-decoration: none; color: inherit; display: block; }
.show-item-link:hover .show-info h3 { color: var(--sage); }
.section-more { text-align: center; margin-top: 3rem; }
@media (max-width: 720px) {
  .detail-wrap, .index-wrap { padding: 7rem 1.3rem 4rem; }
  .detail-actions { flex-direction: column; }
  .btn-solid, .btn-outline { text-align: center; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ---- condensed two-column buy list ---- */
.buy-list{columns:2;column-gap:2.75rem;list-style:none;padding:0;margin:0 auto;max-width:1100px}
.buy-list li{break-inside:avoid;display:grid;grid-template-columns:1fr auto;gap:.15rem .9rem;
 align-items:center;padding:.55rem 0;border-bottom:1px solid var(--border)}
.buy-list .p-name{grid-column:1;font-weight:600;color:var(--forest);font-size:.98rem}
.buy-list .p-meta{font-size:.74rem;color:var(--text-light);margin-left:.45rem;font-weight:400}
.buy-list .p-want{grid-column:1;font-size:.84rem;line-height:1.4;color:var(--text-muted)}
.buy-list .tier{grid-column:2;grid-row:1 / span 2}
.grade-badge{display:inline-block;font-family:'Barlow Condensed',sans-serif;font-size:.71rem;
 letter-spacing:.06em;text-transform:uppercase;border:1px solid var(--border-hover);
 color:var(--text-muted);padding:.05rem .38rem;border-radius:2px;white-space:nowrap;margin-left:.3rem}
.tier{display:inline-block;font-family:'Barlow Condensed',sans-serif;font-size:.73rem;
 letter-spacing:.07em;text-transform:uppercase;padding:.18rem .55rem;border-radius:2px;white-space:nowrap}
.tier.t-top{background:var(--forest);color:#fff}
.tier.t-strong{background:var(--mint);color:#0f2e1c}
.tier.t-ask{background:var(--light-grey);color:var(--text-muted)}
.tier-legend{display:flex;gap:1.4rem;flex-wrap:wrap;align-items:center;justify-content:center;
 margin:1.6rem auto 0;font-size:.82rem;color:var(--text-muted);max-width:1100px}
@media (max-width:760px){.buy-list{columns:1}}
