/* Markets — professional regional pages (no SEO dump UI) */

.mkt-hero {
  padding: calc(var(--nav-h) + 56px) 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.mkt-hero-slim { padding-bottom: 40px; }
.mkt-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 12px 0 18px;
}
.mkt-lead {
  font-weight: 300;
  color: var(--stone);
  font-size: 1.1rem;
  max-width: 40ch;
  line-height: 1.65;
}

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.mkt-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--ink);
  min-height: 250px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.mkt-card:hover {
  transform: translateY(-4px);
  border-color: var(--line2);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.06);
  color: var(--paper);
}
.mkt-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--mono);
}
.mkt-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.mkt-blurb {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.mkt-cities {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-transform: uppercase;
  margin: 0;
}
.mkt-go {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: transform 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mkt-go::after {
  content: "\2192";
  transition: transform 0.3s var(--ease);
}
.mkt-card:hover .mkt-go { transform: translateX(2px); }
.mkt-card:hover .mkt-go::after { transform: translateX(4px); }

.mkt-band {
  background: var(--paper);
  color: var(--void);
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.mkt-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mkt-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 8px;
  color: var(--void);
}
.mkt-band .section-label {
  color: color-mix(in srgb, var(--void) 45%, transparent);
}
.mkt-band .section-label::before {
  background: color-mix(in srgb, var(--void) 30%, transparent);
}
.mkt-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}
.mkt-steps strong {
  font-family: var(--mono);
  font-weight: 500;
  margin-right: 10px;
  letter-spacing: 0.08em;
}
.mkt-band .btn {
  background: var(--void);
  color: var(--paper);
  border-color: var(--void);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.mkt-band .btn:hover {
  background: #fff;
  color: var(--paper);
  border-color: #fff;
  transform: scale(1.03);
}

.mkt-detail {
  display: grid;
  gap: 48px;
}
@media (min-width: 960px) {
  .mkt-detail {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}
.mkt-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 40px 0 18px;
}
.mkt-h2:first-child { margin-top: 0; }
.mkt-intro {
  font-weight: 300;
  color: var(--stone);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 42ch;
}

.mkt-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.mkt-city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--ink);
  font-size: 14px;
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.mkt-city:hover {
  border-color: var(--paper);
  transform: translateY(-2px);
  color: var(--paper);
}
.mkt-city-arrow {
  font-size: 0;
}
.mkt-city-arrow::after {
  content: "\2192";
  font-size: 14px;
  font-family: var(--mono);
  color: var(--stone);
}

.mkt-pack-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mkt-pack {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--ink);
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.mkt-pack:hover {
  border-color: var(--line2);
  transform: translateX(4px);
  color: var(--paper);
}
.mkt-pack img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.mkt-pack-sku {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--stone);
  display: block;
  margin-bottom: 4px;
}
.mkt-pack strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  display: block;
  letter-spacing: -0.015em;
}
.mkt-pack-tag {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  margin-top: 4px;
  line-height: 1.4;
}
.mkt-pack-price {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--mono);
}
.mkt-ol {
  margin: 0 0 24px 1.2rem;
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.8;
}
.mkt-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
@media (max-width: 959px) {
  .mkt-aside { position: static; }
}

/* kill legacy SEO dump UI */
.geo-kw-block,
.seo-dense:not(.keep) {
  /* keep dense only if needed — hide dump blocks */
}
.geo-kw-block { display: none !important; }
