/* Tickstone — Basalt editorial commerce */
:root {
  --bg: #0c0b0a;
  --bg-2: #141210;
  --ink: #f3ece1;
  --ink-dim: #b8aea0;
  --line: rgba(243, 236, 225, 0.12);
  --bronze: #c9a06a;
  --bronze-2: #e8c99a;
  --ember: #d96b3b;
  --ok: #8fbf9f;
  --danger: #e07a6a;
  --card: rgba(22, 20, 17, 0.78);
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font: "Instrument Sans", "Noto Sans SC", system-ui, sans-serif;
  --display: "Syne", "Noto Sans SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body.ts-body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }

.ts-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .22;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 160, 106, .16), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(217, 107, 59, .08), transparent 50%),
    url("/assets/tickstone/img/hero-basalt.png") center/cover no-repeat;
  filter: saturate(.7) contrast(1.05);
}
.ts-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
  mix-blend-mode: overlay;
  opacity: .35;
}
.ts-shell { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }
.ts-main { flex: 1; width: min(1240px, calc(100% - 32px)); margin: 0 auto; padding: 18px 0 80px; min-width: 0; overflow-x: clip; }

/* Nav */
.ts-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(12,11,10,.92), rgba(12,11,10,.62) 70%, transparent);
  border-bottom: 1px solid transparent;
}
.ts-nav-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}
.ts-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ts-brand img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 50%;
  background: #6d74ef;
  box-shadow: 0 0 0 2px rgba(255,255,255,.14), 0 10px 24px rgba(0,0,0,.35);
}
.ts-brand-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.05rem;
}
.ts-brand-sub { display: block; font-size: 11px; color: var(--ink-dim); letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.ts-nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.ts-link {
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: .2s ease;
}
.ts-link:hover, .ts-link.is-on { color: var(--ink); background: rgba(243,236,225,.06); }
.ts-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  transition: transform .15s ease, background .2s ease;
}
.ts-btn:hover { transform: translateY(-1px); }
.ts-btn-ghost { background: rgba(243,236,225,.08); color: var(--ink); }
.ts-btn-bronze { background: linear-gradient(180deg, var(--bronze-2), var(--bronze)); color: #1a140c; }
.ts-btn-solid { background: var(--ink); color: #111; width: 100%; padding: 14px 18px; font-size: 15px; }
.ts-btn[disabled], .btn-disabled { opacity: .45; pointer-events: none; }

/* Hero fused into catalog */
.ts-hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 28px;
  align-items: center;
  padding: 18px 0 8px;
}
.ts-kicker {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 12px;
}
.ts-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 2.4vw + .6rem, 3.05rem);
  line-height: 1.28;
  letter-spacing: .08em;
  margin: 0 0 16px;
  font-weight: 800;
  white-space: nowrap;
  word-break: keep-all;
}
.ts-hero h1 em { font-style: normal; color: var(--bronze-2); }
.ts-lead { color: var(--ink-dim); max-width: 46ch; font-size: 1.02rem; line-height: 1.6; margin: 0 0 22px; }
.ts-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(12,11,10,.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  max-width: 420px;
}
.ts-search input {
  flex: 1; background: transparent; border: 0; color: var(--ink); outline: none; font-size: 14px; min-width: 0;
}
.ts-hero-panel,
.ts-hero-open {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ts-hero-open:hover { transform: translateY(-3px); box-shadow: 0 36px 90px rgba(0, 0, 0, .55); }
.ts-hero-panel img,
.ts-hero-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}
.ts-hero-panel span {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 12px; letter-spacing: .12em; color: #fff;
  text-shadow: 0 6px 20px #000;
}
.ts-hero-open-label {
  position: absolute; right: 14px; top: 14px;
  font-size: 12px; letter-spacing: .08em; color: #fff;
  background: rgba(12, 11, 10, .42);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

/* Chips */
.ts-chips {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 16px;
  margin: 8px 0 6px;
  background: linear-gradient(180deg, rgba(12,11,10,.9), rgba(12,11,10,.55) 70%, transparent);
  scrollbar-width: none;
}
.ts-chips::-webkit-scrollbar { display: none; }
.ts-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(20,18,16,.7);
  color: var(--ink-dim);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}
.ts-chip.is-on { background: var(--ink); color: #111; border-color: var(--ink); }

.ts-group-head { margin: 8px 0 18px; }
.ts-group-head h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -.04em;
  margin: 0 0 6px;
}
.ts-group-head p { margin: 0; color: var(--ink-dim); font-size: 14px; }

/* Catalog */
.ts-open {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  min-height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #111;
  margin-bottom: 16px;
}
.ts-open img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.ts-open-copy { padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.ts-open-copy small { letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); font-size: 11px; }
.ts-open-copy strong { font-family: var(--display); font-size: 1.6rem; letter-spacing: -.04em; }
.ts-open-copy em { font-style: normal; color: var(--ink-dim); font-size: 14px; }

.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ts-group-block { min-width: 0; }
.ts-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  text-decoration: none;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  transition: transform .2s ease, border-color .2s ease;
}
.ts-card:hover { transform: translateY(-4px); border-color: rgba(201,160,106,.45); }
.ts-card.is-out { opacity: .55; cursor: not-allowed; transform: none; }
.ts-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #1a1714; }
.ts-card-media img { width: 100%; height: 100%; object-fit: cover; }
.ts-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 4, .88));
  pointer-events: none;
}
.ts-stock, .ts-rebate, .ts-auto {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(12,11,10,.72);
  color: var(--danger);
}
.ts-rebate { left: 12px; right: auto; color: var(--ok); }
.ts-auto { left: 12px; right: auto; top: auto; bottom: 12px; color: var(--bronze-2); }
.ts-price-on {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}
.ts-price-on b {
  font-size: 1.55rem;
  font-variant-numeric: tabular-nums;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}
.ts-price-on span {
  color: var(--bronze-2);
  font-size: 13px;
  font-weight: 650;
}
.ts-price-on del {
  margin-left: auto;
  color: rgba(243,236,225,.48);
  font-size: 13px;
}
.ts-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
.ts-card-cat { font-size: 11px; letter-spacing: .08em; color: var(--bronze); }
.ts-card-body h3 { margin: 0; font-size: 1.05rem; letter-spacing: -.02em; font-weight: 650; overflow-wrap: anywhere; }
.ts-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 2px 0 4px;
}
.ts-specs > div {
  background: rgba(243, 236, 225, .05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  min-width: 0;
}
.ts-specs span {
  display: block;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.ts-specs b {
  display: block;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ts-specs-buy {
  grid-template-columns: 1fr 1fr;
  margin: 0 0 18px;
}
.ts-specs-buy > div { padding: 10px 12px; }
.ts-specs-buy b { font-size: 15px; }
.ts-price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.ts-price b { font-size: 1.25rem; font-variant-numeric: tabular-nums; }
.ts-price span { color: var(--ink-dim); font-size: 12px; }
.ts-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 48px 20px;
  text-align: center;
  color: var(--ink-dim);
}

.ts-notice, .ts-articles {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: rgba(20,18,16,.5);
}
.ts-notice h2, .ts-articles h2 { margin: 0 0 10px; font-size: 1rem; }
.ts-notice .notice, .blog-content { color: var(--ink-dim); line-height: 1.7; }
.ts-article-list { display: grid; gap: 8px; }
.ts-article-list a { display: flex; justify-content: space-between; gap: 12px; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.ts-article-list span { color: var(--ink-dim); font-size: 12px; }
.ts-guide { max-width: 820px; }
.ts-guide > h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .02em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.ts-crumb, .ts-guide-meta { color: var(--ink-dim); font-size: 13px; margin: 0 0 16px; }
.ts-crumb a { color: var(--ink-dim); text-decoration: none; }
.ts-guide-body { color: var(--ink-dim); line-height: 1.8; }
.ts-guide-body h2 { color: var(--ink); font-size: 1.15rem; margin: 28px 0 10px; }
.ts-guide-body p { margin: 0 0 14px; }
.ts-guide-body ul { margin: 0 0 16px; padding-left: 1.2em; }
.ts-guide-body a { color: var(--bronze-2); }
.ts-guide-body .ts-btn { margin: 8px 8px 0 0; }
.ts-pager { margin-top: 18px; }

/* Buy */
.ts-buy { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: start; }
.ts-buy-form, .ts-buy-doc, .card, .card-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ts-buy-form, .buy-product, .card-body { padding: 22px; }
.ts-buy-form h1, .page-title, .blog-post-title {
  font-family: var(--display);
  letter-spacing: -.04em;
  margin: 0 0 12px;
}
.ts-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ts-pill {
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--ink-dim);
}
.ts-price-lg { font-size: 2rem; margin: 0 0 18px; }
.ts-price-lg small { font-size: 14px; color: var(--ink-dim); font-weight: 400; }
.ts-countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid rgba(201, 160, 106, .38);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(201, 160, 106, .14), rgba(201, 160, 106, .04));
  box-shadow: inset 0 0 0 1px rgba(232, 201, 154, .08);
}
.ts-countdown-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.ts-countdown b {
  display: block;
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.8rem, 11vw, 3.8rem);
  line-height: .95;
  font-weight: 800;
  color: #fff6e8;
  letter-spacing: .1em;
  text-shadow: 0 0 28px rgba(232, 201, 154, .45);
}
.ts-pay-fail h1 { color: var(--danger); }
.ts-pay-fail .ts-btn { margin-top: 12px; display: inline-flex; }
.ts-ship-banner {
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 191, 159, .35);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(143, 191, 159, .16), rgba(143, 191, 159, .04));
}
.ts-ship-banner h2 {
  font-family: var(--display);
  margin: 4px 0 10px;
  letter-spacing: -.03em;
}
.ts-ship-banner p { margin: 0 0 10px; color: var(--ink-dim); }
.ts-ship-sn {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .08em;
  color: var(--ink) !important;
  font-weight: 700;
}
.ts-ship-banner .ts-btn { display: inline-flex; margin-top: 4px; }
.ts-ship-kami-empty { color: var(--ink-dim); margin: 0; }
.buy-title, .form-group label { display: block; font-size: 12px; color: var(--ink-dim); margin-bottom: 6px; }
.form-group { margin-bottom: 14px; }
.form-control, input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
  width: 100%;
  background: #0e0d0b;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}
.ts-qty { display: flex; align-items: center; max-width: 180px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.ts-qty input { border: 0; text-align: center; background: transparent; width: 70px; padding: 10px 0; }
.ts-qty button { width: 44px; height: 44px; border: 0; background: rgba(243,236,225,.06); color: var(--ink); cursor: pointer; }
.pay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; width: 100%; }
.pay-type {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #12100e;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 13px;
}
.pay-type::after { content: attr(data-name); }
.pay-type.active { border-color: var(--bronze); box-shadow: 0 0 0 1px var(--bronze) inset; color: var(--bronze-2); }
.buy-product { color: var(--ink-dim); line-height: 1.75; }
.buy-product img { border-radius: 16px; margin: 12px 0; }

/* Footer */
.ts-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--ink-dim);
  font-size: 13px;
}
.ts-footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Toast */
.ts-toast {
  position: fixed; left: 50%; top: 18px; transform: translateX(-50%) translateY(-20px);
  background: #1c1916; color: var(--ink); border: 1px solid var(--line);
  padding: 12px 16px; border-radius: 14px; z-index: 80; opacity: 0; pointer-events: none;
  transition: .25s ease;
}
.ts-toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Bootstrap-ish compatibility for remaining pages */
.container { width: min(1240px, 100%); margin: 0 auto; }
.row { display: flex; flex-wrap: wrap; margin: 0 -8px; }
.row > [class*="col-"], .col-12, .col-lg-4, .col-lg-6, .col-md-6, .col-md-12, .col-sm {
  padding: 0 8px; width: 100%;
}
.col-lg-4 { max-width: 420px; margin-left: auto; margin-right: auto; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.text-md-right, .text-right { text-align: right; }
.mt-3 { margin-top: 16px; } .mt-4 { margin-top: 22px; } .mb-0 { margin-bottom: 0; } .mb-3 { margin-bottom: 16px; }
.p-0 { padding: 0; } .p-2 { padding: 8px; }
.d-none { display: none; }
.d-flex { display: flex; }
.btn, .btn-primary, .btn-danger, .btn-info, .btn-secondary, .btn-warning, .btn-outline-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; border-radius: 999px; padding: 10px 16px; cursor: pointer; text-decoration: none;
  background: var(--bronze); color: #1a140c; font-weight: 600;
}
.btn-secondary, .btn-outline-primary { background: rgba(243,236,225,.1); color: var(--ink); }
.btn-danger { background: var(--ember); color: #fff; }
.alert { padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); background: rgba(20,18,16,.6); }
.alert-warning { border-color: rgba(201,160,106,.4); }
.badge, .badge-outline-primary, .badge-outline-danger, .badge-outline-dark, .badge-outline-success, .badge-info {
  display: inline-block; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px; color: var(--ink-dim);
}
.nav-tabs { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0 0 16px; border: 0; flex-wrap: wrap; }
.nav-tabs .nav-link { color: var(--ink-dim); text-decoration: none; padding: 8px 12px; border-radius: 999px; }
.nav-tabs .nav-link.active { background: var(--ink); color: #111; }
.tab-pane { display: none; }
.tab-pane.active, .tab-pane.show { display: block; }
.modal { display: none; position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.55); align-items: center; justify-content: center; padding: 20px; }
.modal.show, .modal.in { display: flex; }
.modal-dialog { width: min(520px, 100%); }
.modal-content { background: #161412; border: 1px solid var(--line); border-radius: 20px; padding: 8px 8px 16px; color: var(--ink); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; }
.close { background: transparent; border: 0; color: var(--ink); font-size: 22px; cursor: pointer; }
.table { width: 100%; border-collapse: collapse; }
.table td, .table th { padding: 10px 0; border-bottom: 1px solid var(--line); }
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; right: 0; top: 110%;
  background: #161412; border: 1px solid var(--line); border-radius: 14px; min-width: 160px; padding: 8px; z-index: 30;
}
.dropdown.show .dropdown-menu, .dropdown-menu.show { display: block; }
.dropdown-item { display: block; padding: 8px 10px; text-decoration: none; color: var(--ink); border-radius: 8px; }
.page-title-box { margin: 8px 0 18px; }
.sticky { position: sticky; top: 88px; }
.stats-card { display: flex; gap: 16px; align-items: center; padding: 20px; margin-bottom: 16px; }
.stats-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(201,160,106,.12); color: var(--bronze); }
.text-muted { color: var(--ink-dim); }
.text-body { color: var(--ink); text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--line); }
.input-group { display: flex; gap: 8px; align-items: center; }
.buy-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.buy-captcha img { height: 42px; border-radius: 8px; }
.card { margin-bottom: 16px; }
.card-header { padding: 14px 18px; border-bottom: 1px solid var(--line); }
.text-error { font-family: var(--display); font-size: 4rem; color: var(--bronze); letter-spacing: -.06em; }
.footer-links { color: var(--ink-dim); }

@media (max-width: 980px) {
  .ts-hero, .ts-open, .ts-buy, .buy-grid { grid-template-columns: 1fr; }
  .ts-hero-open { aspect-ratio: 16 / 9; }
  .ts-hero h1 { white-space: normal; }
  .ts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
  .sticky { position: static; }
}
@media (max-width: 640px) {
  .ts-nav-links .ts-link { display: none; }
  .ts-grid { grid-template-columns: minmax(0, 1fr); }
  .ts-hero-open { min-height: 160px; }
  .ts-main { width: calc(100% - 24px); }
}
